public void print(Reader in) throws IOException {
   StreamUtils.copy(in, _out);
   _out.flush();
 }
 public void println() {
   _out.print("\r\n");
   _out.flush();
 }