在Java中,可以使用try-catch语句来捕获文件不存在异常。当调用File.exists()方法时,如果文件不存在,会抛出一个FileNotFoundException异常。下面是一个简单的示例代码:
import java.io.File;
public class FileExistsExample {
public static void main(String[] args) {
File file = new File("test.txt");
try {
if (file.exists()) {
System.out.println("File exists!");
} else {
System.out.println("File does not exist.");
}
} catch (Exception e) {
System.out.println("An error occurred: " + e.getMessage());
// 可以在此处处理异常,比如创建文件,或者输出日志
}
}
}
在上面的示例中,我们使用try-catch语句捕获了文件不存在异常,并在catch语句块中输出了异常信息。您可以在catch语句块中添加适当的处理逻辑,比如创建文件,或者输出日志信息。