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));
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));
jad.exe
CrossSectionDemo1.java