如何將Eclipse的控制檯消息寫入文件?從Eclipse將控制檯消息寫入文件
請檢查它,如果任何人提供解決方案,我將不勝感激。 我的示例程序如下
給出的是這樣的控制檯消息:
Invalid Excel Path Specified "+path
try {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String lineFromInput = in.readLine();
PrintStream out = new PrintStream(new FileOutputStream("C:/Error.txt"));
System.setOut(out);
out.close();
}
catch(IOException e1) {
System.out.println("Error during reading/writing");
}
}
現在我改變了馬代碼像你說的,但它沒有工作嘗試{ \t \t \t \t \t \t \t \t的BufferedReader在=新的BufferedReader(新的InputStreamReader(System.in)); \t String lineFromInput = in.readLine(); (新的FileOutputStream(「C:\\ Error.txt」));}}; \t System.setOut(out); \t System.out.println(lineFromInput); \t out.close(); \t \t} \t \t趕上(IOException的E1){ \t \t的System.out.println( 「期間讀/寫錯誤」); \t \t} – Anna
@Anna你得到什麼錯誤? – pinkpanther
@pinkpanther我did not得到errors.but它不寫控制檯輸出到文件 – Anna