java file.exists异常处理

avatar
作者
筋斗云
阅读量:0

在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语句块中添加适当的处理逻辑,比如创建文件,或者输出日志信息。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!