gpt4 book ai didi

java - 如何将 printStackTrace() 中的异常写入 Java 中的文本文件?

转载 作者:IT老高 更新时间:2023-10-28 20:25:39 25 4
gpt4 key购买 nike

我需要在 Java 的文本文件中捕获异常。例如:

try {
File f = new File("");
}
catch(FileNotFoundException f) {
f.printStackTrace(); // instead of printing into console it should write into a text file
writePrintStackTrace(f.getMessage()); // this is my own method where I store f.getMessage() into a text file.
}

使用 getMessage() 有效,但它只显示错误消息。我想要 printStackTrace() 中的所有信息,包括行号。

最佳答案

它接受一个 PrintStream 作为参数;见documentation .

File file = new File("test.log");
PrintStream ps = new PrintStream(file);
try {
// something
} catch (Exception ex) {
ex.printStackTrace(ps);
}
ps.close();

另见 Difference between printStackTrace() and toString()

关于java - 如何将 printStackTrace() 中的异常写入 Java 中的文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12053075/

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