コード例 #1
0
 @Override
 public void write(byte b[]) throws IOException {
   bout.write(b);
   output.write(b);
 }
コード例 #2
0
 @Override
 public void write(byte b[], int off, int len) throws IOException {
   bout.write(b, off, len);
   output.write(b, off, len);
 }
コード例 #3
0
 @Override
 public void write(int b) throws IOException {
   bout.write((char) b);
   output.write(b);
 }