Package | Description |
---|---|
info.bioinfweb.commons.io |
Modifier and Type | Class and Description |
---|---|
class |
IOProgressListenerAdapter
An abstract adapter class for receiving IO progress events.
|
class |
IOProgressListenerVector
This class can be used if several profress listeners should be informed about the same process.
|
Modifier and Type | Method and Description |
---|---|
IOProgressListener |
IOProgressListenerVector.get(int pos) |
Modifier and Type | Method and Description |
---|---|
boolean |
IOProgressListenerVector.add(IOProgressListener listener) |
static void |
IOUtils.copy(File src,
File dest,
IOProgressListener progressListener)
Copies a file.
|
static void |
IOUtils.copy(InputStream in,
OutputStream out,
boolean close,
IOProgressListener progressListener)
Copies data from an
InputStream to a OutputStream . |
static void |
IOUtils.copy(InputStream in,
OutputStream out,
IOProgressListener progressListener) |
static void |
IOUtils.copyFromResource(String path,
OutputStream out,
IOProgressListener progressListener)
Copies data from an
InputStream to a OutputStream . |
static void |
IOUtils.extractDir(ZipFile file,
String sourcePath,
String destPath,
IOProgressListener progressListener)
Extracts the contents of a directory from an archive (e.g.
|
static void |
IOUtils.extractFile(ZipFile file,
String path,
File dest,
IOProgressListener progressListener)
Extracts a file from an archive (e.g.
|
static void |
IOUtils.extractFile(ZipFile file,
String path,
OutputStream out,
IOProgressListener progressListener)
Extracts a file from an archive (e.g.
|
boolean |
IOProgressListenerVector.remove(IOProgressListener listener) |