如何使用 Java 检查文件是否存在?


文件类提供了一个名为 exists() 的方法,如果文件对象中指定的当前文件存在,则该方法会返回 true。

示例

在线演示

import java.io.File;

public class FileHandling {
   public static void main(String args[]) {
      File file = new File("samplefile");

      if(file.exists()) {
         System.out.println("Given file existed");
      } else {
         System.out.println("Given file does not existed");
     }
   }
}

输出

Given file does not existed

更新日期:2020 年 2 月 20 日

108 次浏览

开启你的职业生涯

完成课程,获得认证

开始学习
广告