Package org.apache.tools.ant.util
Class TeeOutputStream
java.lang.Object
java.io.OutputStream
org.apache.tools.ant.util.TeeOutputStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
A simple T-piece to replicate an output stream into two separate streams
-
Constructor Summary
ConstructorDescriptionTeeOutputStream
(OutputStream left, OutputStream right) Constructor for TeeOutputStream. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close both output streams.void
flush()
Flush both output streams.void
write
(byte[] b) Write a byte array to both output streams.void
write
(byte[] b, int off, int len) Write a byte array to both output streams.void
write
(int b) Write a byte to both output streams.Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
TeeOutputStream
Constructor for TeeOutputStream.- Parameters:
left
- one of the output streams.right
- the other output stream.
-
-
Method Details
-
close
Close both output streams.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
- on error.
-
flush
Flush both output streams.- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
- on error
-
write
Write a byte array to both output streams.- Overrides:
write
in classOutputStream
- Parameters:
b
- an array of bytes.- Throws:
IOException
- on error.
-
write
Write a byte array to both output streams.- Overrides:
write
in classOutputStream
- Parameters:
b
- the data.off
- the start offset in the data.len
- the number of bytes to write.- Throws:
IOException
- on error.
-
write
Write a byte to both output streams.- Specified by:
write
in classOutputStream
- Parameters:
b
- the byte to write.- Throws:
IOException
- on error.
-