public void println(String line) { if (log.isDebugEnabled()) { log.debug("S: " + line); } _out.print(line); println(); }
public void print(Reader in) throws IOException { StreamUtils.copy(in, _out); _out.flush(); }
public void println() { _out.print("\r\n"); _out.flush(); }