static long |
Util.copyReader(java.io.Reader source,
java.io.Writer dest) |
Same as copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);
|
static long |
Util.copyReader(java.io.Reader source,
java.io.Writer dest,
int bufferSize) |
Copies the contents of a Reader to a Writer using a
copy buffer of a given size.
|
static long |
Util.copyReader(java.io.Reader source,
java.io.Writer dest,
int bufferSize,
long streamSize,
CopyStreamListener listener) |
Copies the contents of a Reader to a Writer using a
copy buffer of a given size and notifies the provided
CopyStreamListener of the progress of the copy operation by calling
its bytesTransferred(long, int) method after each write to the
destination.
|
static long |
Util.copyStream(java.io.InputStream source,
java.io.OutputStream dest) |
Same as copyStream(source, dest, DEFAULT_COPY_BUFFER_SIZE);
|
static long |
Util.copyStream(java.io.InputStream source,
java.io.OutputStream dest,
int bufferSize) |
Copies the contents of an InputStream to an OutputStream using a
copy buffer of a given size.
|
static long |
Util.copyStream(java.io.InputStream source,
java.io.OutputStream dest,
int bufferSize,
long streamSize,
CopyStreamListener listener) |
Copies the contents of an InputStream to an OutputStream using a
copy buffer of a given size and notifies the provided
CopyStreamListener of the progress of the copy operation by calling
its bytesTransferred(long, int) method after each write to the
destination.
|
static long |
Util.copyStream(java.io.InputStream source,
java.io.OutputStream dest,
int bufferSize,
long streamSize,
CopyStreamListener listener,
boolean flush) |
Copies the contents of an InputStream to an OutputStream using a
copy buffer of a given size and notifies the provided
CopyStreamListener of the progress of the copy operation by calling
its bytesTransferred(long, int) method after each write to the
destination.
|