我已尝试使用此代码建议(http://www.daniweb.com/forums/thread23883.html#)将控制台输出写入txt文件,但未成功。怎么了?
try { //create a buffered reader that connects to the console, we use it so we can read lines BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); //read a line from the console String lineFromInput = in.readLine(); //create an print writer for writing to a file PrintWriter out = new PrintWriter(new FileWriter("output.txt")); //output to the file a line out.println(lineFromInput); //close the file (VERY IMPORTANT!) out.close(); } catch(IOException e1) { System.out.println("Error during reading/writing"); }
你需要执行以下操作:
PrintStream out = new PrintStream(new FileOutputStream("output.txt")); System.setOut(out);
第二句话是关键。它将假定的“最终” System.out属性的值更改为提供的PrintStream值。
System.out
PrintStream
可以使用类似的方法(setIn和setErr)来更改标准输入和错误流。java.lang.System有关详细信息,请参考javadocs。
setIn
setErr
java.lang.System
javadocs
上面的一个更通用的版本是这样的:
PrintStream out = new PrintStream( new FileOutputStream("output.txt", append), autoFlush); System.setOut(out);
如果append为is true,则流将追加到现有文件,而不是将其截断。如果autoflush为is true,则每当写入字节数组,println调用其中一种方法或写入a时,将刷新输出缓冲区\n。
append
true
autoflush
is true
println
\n
我想补充一下,通常最好使用Log4j,Logback或标准Java java.util.logging子系统之类的日志记录子系统。它们通过运行时配置文件提供细粒度的日志记录控制,支持滚动日志文件,系统日志的提要,等等。
或者,如果你不是“记录”,请考虑以下事项:
$ java MyApp > output.txt
有关更多信息,请参考Shell教程或手册。
更改System.out可能会导致JVM中其他未预期到的代码令人讨厌。(设计正确的Java库将避免依赖System.out和System.err,但是你可能很不幸。)
System.err