Package org.apache.commons.io.output
Class TeeWriter
java.lang.Object
java.io.Writer
org.apache.commons.io.output.FilterCollectionWriter
org.apache.commons.io.output.ProxyCollectionWriter
org.apache.commons.io.output.TeeWriter
- All Implemented Interfaces:
- Closeable,- Flushable,- Appendable,- AutoCloseable
Classic splitter of 
Writer. Named after the Unix 'tee' command. It allows a stream to be branched off so
 there are now two streams.
 This currently a only convenience class with the proper name "TeeWriter".
- Since:
- 2.7
- 
Field SummaryFields inherited from class org.apache.commons.io.output.FilterCollectionWriterEMPTY_WRITERS, writers
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new filtered collection writer.TeeWriter(Collection<Writer> writers) Constructs a new filtered collection writer.
- 
Method SummaryMethods inherited from class org.apache.commons.io.output.ProxyCollectionWriterafterWrite, append, append, append, beforeWrite, close, flush, handleIOException, write, write, write, write, write
- 
Constructor Details- 
TeeWriterConstructs a new filtered collection writer.- Parameters:
- writers- Writers to provide the underlying targets.
 
- 
TeeWriterConstructs a new filtered collection writer.- Parameters:
- writers- Writers to provide the underlying targets.
 
 
-