Java 异常会终止整个 java 应用程序吗?
2022-09-03 09:30:29
我曾经认为,当异常发生时,整个java应用程序将被终止。例如,我写了一个测试函数来测试我的想法。
public void test(){
File fileDir=new File(sourceDataDir);
if(fileDir.exists()){
File[] files = fileDir.listFiles();
for(int index=0 ; index<files.length ; index++){
System.out.println("index = "+index);
File file = files[index];
if(index == 1)//delete a file to cause a FileNotFoundException
file.delete();
try {
BufferedReader in = new BufferedReader(new FileReader(file));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
}
我删除了一个文件,导致手动。我曾经认为,当异常发生时,整个应用程序都会终止。但实际上,应用程序将继续读取其余文件。因此,我的问题是,在什么情况下,异常会导致整个应用程序被终止?FileNotFoundException