org.apache.tools.ant.util
Class TeeOutputStream

java.lang.Object
  extended byjava.io.OutputStream
      extended byorg.apache.tools.ant.util.TeeOutputStream

public class TeeOutputStream
extends java.io.OutputStream

A simple T-piece to replicate an output stream into two separate streams


Constructor Summary
TeeOutputStream(java.io.OutputStream left, java.io.OutputStream right)
          Constructor for TeeOutputStream.
 
Method Summary
 void 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.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TeeOutputStream

public TeeOutputStream(java.io.OutputStream left,
                       java.io.OutputStream right)
Constructor for TeeOutputStream.

Parameters:
left - one of the output streams.
right - the other output stream.
Method Detail

close

public void close()
           throws java.io.IOException
Close both output streams.

Throws:
java.io.IOException - on error.

flush

public void flush()
           throws java.io.IOException
Flush both output streams.

Throws:
java.io.IOException - on error

write

public void write(byte[] b)
           throws java.io.IOException
Write a byte array to both output streams.

Parameters:
b - an array of bytes.
Throws:
java.io.IOException - on error.

write

public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
Write a byte array to both output streams.

Parameters:
b - the data.
off - the start offset in the data.
len - the number of bytes to write.
Throws:
java.io.IOException - on error.

write

public void write(int b)
           throws java.io.IOException
Write a byte to both output streams.

Parameters:
b - the byte to write.
Throws:
java.io.IOException - on error.


Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.