gpt4 book ai didi

java - 将抛出的异常写入文件

转载 作者:行者123 更新时间:2023-11-29 03:50:21 24 4
gpt4 key购买 nike

是否可以在不使用 try catch block 的情况下将抛出的异常写入文件?

例如

public static void method() throws Exception, SQLException{
if(Exception is thrown){
write Exception to out.txt;
write SQLException to out.txt;
}
}

或者你必须做:

public static void method(){
try{
...
}catch(Exception ex){
write ex to file;
}catch(SQLException sqlex){
write sqlex to file;
}
}

最佳答案

在 Java 中,我认为这是不可能的。

但是,如果在 *nix 上执行,您可以只使用 redirect all output to a file (或只是错误输出)。但这不是通用解决方案。

关于java - 将抛出的异常写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9071700/

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