示例#1
0
  @Override
  public void write(byte b[], int off, int len) {
    String str = new String(b, off, len);

    controller.display(str);
  }
示例#2
0
  @Override
  public void write(byte b[]) throws IOException {
    String str = new String(b);

    controller.display(str);
  }