Package | Description |
---|---|
org.apache.commons.net.io |
Utility classes for IO support.
|
Modifier and Type | Method and Description |
---|---|
static long |
Util.copyReader(Reader source,
Writer dest)
Same as
copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE); |
static long |
Util.copyReader(Reader source,
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(Reader source,
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(InputStream source,
OutputStream dest)
Same as
copyStream(source, dest, DEFAULT_COPY_BUFFER_SIZE); |
static long |
Util.copyStream(InputStream source,
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(InputStream source,
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(InputStream source,
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.
|
Copyright © 2001–2016 The Apache Software Foundation. All rights reserved.