Package org.apache.commons.io.output

Implementations of output classes, such as OutputStream and Writer.

See:
          Description

Class Summary
ByteArrayOutputStream This class implements an output stream in which the data is written into a byte array.
CountingOutputStream Used in debugging, it counts the number of bytes that pass through it.
DemuxOutputStream Data written to this stream is forwarded to a stream that has been associated with this thread.
LockableFileWriter FileWriter that will create and honor lock files to allow simple cross thread file lock handling.
NullOutputStream This OutputStream writes all data to the famous /dev/null.
ProxyOutputStream A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called.
ProxyWriter A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called.
TeeOutputStream Classic splitter of OutputStream.
 

Package org.apache.commons.io.output Description

Implementations of output classes, such as OutputStream and Writer.