@Override public void write(byte b[]) throws IOException { bout.write(b); output.write(b); }
@Override public void write(byte b[], int off, int len) throws IOException { bout.write(b, off, len); output.write(b, off, len); }
@Override public void write(int b) throws IOException { bout.write((char) b); output.write(b); }