Append java console to file
I use the following lines to redirect my console output to a file :
PrintStream stream = new PrintStream("console.log");
System.setOut(stre开发者_如何学运维am);
Now the file is overwritten with every start of the application, thus losing all previous entries, but i´d like it to append every session to a persistent console logfile. Is it possible ?
This should work:
PrintStream stream = new PrintStream(new FileOutputStream("console.log", true));
Set the second argument to true
.
try {
BufferedWriter out = new BufferedWriter(new FileWriter("file.txt", true));
out.close();
} catch (Exception e) {}
精彩评论