'redirection'에 해당되는 글 1건

  1. 2009/11/18 JAVA (redirection of standard output and error streams)
2009/11/18 04:49 My major/JAVA
 Redirection of the standard output and error streams to log files.

FileOutputStream fos = new FileOutputStream("out.stdout", true);
BufferedOutputStream bos = new BufferedOutputStream(fos);
System.setOut(new PrintStream(bos, true));
fos = new FileOutputStream("error.stderr", true);
bos = new BufferedOutputStream(fos);
System.setErr(new PrintStream(bos, true));

posted by joyoungtae