Ejemplo n.º 1
0
 @Override
 public void write(byte b[]) throws IOException {
   bout.write(b);
   output.write(b);
 }
Ejemplo n.º 2
0
 @Override
 public void write(byte b[], int off, int len) throws IOException {
   bout.write(b, off, len);
   output.write(b, off, len);
 }
Ejemplo n.º 3
0
 @Override
 public void write(int b) throws IOException {
   bout.write((char) b);
   output.write(b);
 }