gpt4 book ai didi

java - 将控制台消息从 Eclipse 写入文件

转载 作者:行者123 更新时间:2023-12-01 23:45:54 31 4
gpt4 key购买 nike

如何将控制台消息从 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");
}
}

最佳答案

你需要改变FileOutputStream("C:/Error.txt")

FileOutputStream("C:\\Error.txt")

正如 Juned Ahsan 提到的。另外,如果您需要将从控制台获取的文本写入

错误.txt

您需要添加一行,例如

System.out.println(lineFromInput); 之后

System.setOut(out);

行,您可以在其中设置默认输出位置。

关于java - 将控制台消息从 Eclipse 写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17058958/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com