示例:将堆栈跟踪转换为字符串
import java.io.PrintWriter;
import java.io.StringWriter;
public class PrintStackTrace {
public static void main(String[] args) {
try {
int division = 0 / 0;
} catch (ArithmeticException e) {
StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String exceptionAsString = sw.toString();
System.out.println(exceptionAsString);
}
}
}
输出
java.lang.ArithmeticException: / by zero
at PrintStackTrace.main(PrintStackTrace.java:9)
在上面的程序中,我们强制程序将0除以0引发ArithmeticException
。
在catch
块中,我们使用StringWriter
和PrintWriter
将任何给定的输出打印到字符串。然后,我们使用异常的printStackTrace()
方法打印堆栈跟踪,并将其写入writer。
然后,我们只需使用toString()
方法将其转换为字符串 。