作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个应用程序,它将移动一些文件并更新数据库中的一些输入。如果找不到该文件,将抛出我自己的异常。但在该异常之后,应用程序中断并停止移动文件。如何更改我的代码,以便我的应用程序可以在异常发生后继续?
它只会打印出该文件不存在,然后它会继续移动下一个文件。
这是我的代码:
import java.sql.*;
import java.nio.file.*;
import java.io.*;
public class SortMainNewFinal {
public static void main(String[] args) throws IOException, FileNotSynchronizedException {
//some not relevant code
//...
//the relevant code
if(path.contains(timestamp)) {
if(filecheck(path,filename)) {
data.writeToFile("The File " + filename + " is already in its subordinated folder.");
}
}else {
checkDir(path+timestamp,filename);
filemove(path,timestamp,filename);
data.writeToFile("File "+filename+" has been moved into " + path + timestamp + "/" +
filename);
String strUpdate = ("update cm_documents set document_path=\""+path+timestamp+"/"
+filename + "\" where document_name=\""+filename+"\"");
data.writeToFile("SQL Statement is: " + strUpdate);
update.executeUpdate(strUpdate);
}
//Catch SQLException
}
private static void filemove(String path, String timestamp, String filename)
throws IOException, FileNotSynchronizedException{
try {
Files.move(Paths.get(path+filename), Paths.get(path+timestamp+"/"+filename));
}catch(NoSuchFileException e) {
String error= "ERROR: The file " + filename + " has been moved, renamed or deleted and
these changes are not synchronized with the database.";
String file_name="C:/database/logfile.log";
WriteFile data = new WriteFile(file_name,true);
data.writeToFile(error);
throw new FileNotSynchronizedException(filename);
}
}
}
class FileNotSynchronizedException extends Exception{
FileNotSynchronizedException(String filename) throws IOException{
super("The file" + filename + "has been moved, renamed or deleted and these changes are not
synchronized with the database.");
}
}
我现在的问题是应用程序抛出我的异常然后中断,但我希望应用程序打印出异常然后它应该继续在我的应用程序顶部使用 if 语句等。
我想说我的母语不是英语,所以请原谅任何错误,我对编码很陌生,所以请原谅我的代码中的任何错误。
最佳答案
从您的主要方法中删除 throws IOException、FileNotSynchronizedException,因为您想要处理异常而不是抛出它。如果你离开你的 catch block 是空的,它不会停止程序执行:
try {
filemove(path,timestamp,filename);
}catch ( Exception e){
System.out.println("Some exception occurred -> "+e.getMessage());
}
关于java - 如何在抛出异常后促使应用程序继续运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58371388/
我是一名优秀的程序员,十分优秀!