Uses of Class org.apache.commons.net.io.CopyStreamException

Uses in package org.apache.commons.net.io

Methods which throw type org.apache.commons.net.io.CopyStreamException

long
Util.copyReader(Reader source, Writer dest)
Same as copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);
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.
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.
long
Util.copyStream(InputStream source, OutputStream dest)
Same as copyStream(source, dest, DEFAULT_COPY_BUFFER_SIZE);
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.
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.