gpt4 book ai didi

java - 在java中处理异常并继续进程而不终止

转载 作者:行者123 更新时间:2023-12-04 05:38:19 26 4
gpt4 key购买 nike

我正在使用 Java,我读取了大量 XML 文件并将它们插入到 ORACLE 数据库中,但是在插入时出现异常,然后我的程序终止而不处理剩余的记录,任何人都可以帮助我摆脱这种情况,我想要读取文件,直到它们完成而不终止程序而发生异常。

最佳答案

for (File f : myFileArray) { //Or whatever you have
try {
// your code which might throw exception
} catch ( <Your exception name here> e) {
System.err.println("File failed: " + f.getAbsoultePath() );
continue; //if more code follows the try catch block, otherwise omit it
}
}

由于您没有为您的实际操作提供任何代码片段,我尝试了猜测。

正如评论所暗示的,您使用 try/catch-Blocks 来处理 Java 中的异常。

一个好的教程是 imho

http://chortle.ccsu.edu/java5/index.html

第 80 章和第 81 章。

关于java - 在java中处理异常并继续进程而不终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11625678/

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