コード例 #1
0
 public void println(String line) {
   if (log.isDebugEnabled()) {
     log.debug("S: " + line);
   }
   _out.print(line);
   println();
 }
コード例 #2
0
 public void print(Reader in) throws IOException {
   StreamUtils.copy(in, _out);
   _out.flush();
 }
コード例 #3
0
 public void println() {
   _out.print("\r\n");
   _out.flush();
 }