处理异常并继续执行该过程而不在java中终止

时间:2012-07-24 06:58:40

标签: java xml xml-parsing

我正在研究java,我阅读了大量的XML文件&将它们插入ORACLE数据库但插入时我得到Exception,然后我的程序终止而不处理剩余的记录,任何人都可以帮助我摆脱这种情况,我想读取文件,直到除非他们完成没有程序终止而异常发生

1 个答案:

答案 0 :(得分:3)

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章。