org.bouncycastle.util.io.TeeOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15 Show documentation
Show all versions of bcprov-jdk15 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5.
The newest version!
package org.bouncycastle.util.io;
import java.io.IOException;
import java.io.OutputStream;
public class TeeOutputStream
extends OutputStream
{
private OutputStream output1;
private OutputStream output2;
public TeeOutputStream(OutputStream output1, OutputStream output2)
{
this.output1 = output1;
this.output2 = output2;
}
public void write(byte[] buf)
throws IOException
{
this.output1.write(buf);
this.output2.write(buf);
}
public void write(byte[] buf, int off, int len)
throws IOException
{
this.output1.write(buf, off, len);
this.output2.write(buf, off, len);
}
public void write(int b)
throws IOException
{
this.output1.write(b);
this.output2.write(b);
}
public void flush()
throws IOException
{
this.output1.flush();
this.output2.flush();
}
public void close()
throws IOException
{
this.output1.close();
this.output2.close();
}
}