Java - File isFile() 方法



描述

Java File isFile() 方法检查由该抽象路径名表示的文件是否为普通文件。

声明

以下是 java.io.File.isFile() 方法的声明:

public boolean isFile()

参数

返回值

当且仅当由该抽象路径名表示的文件为文件时,该方法返回 true,否则返回 false。

异常

SecurityException - 如果存在安全管理器,并且其 SecurityManager.checkRead(java.lang.String) 方法拒绝对文件的读取访问权限

示例 1

以下示例演示了 Java File isFile() 方法的使用。我们创建了两个 File 引用。然后,我们使用当前目录中不存在的 test.txt 创建了一个 File 对象。然后,我们使用 createNewFile() 方法创建了该文件。现在,使用 getAbsoluteFile() 方法获取文件,并使用 isFile() 方法检查文件是否为文件,并打印结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;      
      try {
         
         // create new files
         f = new File("test.txt");
         
         // create new file in the system
         f.createNewFile();
         
         // create new file object from the absolute path
         f1 = f.getAbsoluteFile();
         
         // prints the file path if is file
         System.out.print("Is file: "+ f1.isFile());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Is file: true

示例 2

以下示例演示了 Java File isFile() 方法的使用。我们创建了一个 File 引用。然后,我们使用 F:/test.txt 创建了一个 File 对象,该文件存在于提供的目录中。现在,使用 getAbsoluteFile() 方法获取文件,并使用 isFile() 方法打印文件状态检查。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;      
      try {
         
         // create new files
         f = new File("F:/test.txt");         
    
         // get the file
         File f1 = f.getAbsoluteFile();
         
         // prints the file is file
         System.out.println("Is file: "+f1.isFile());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Is file: true

示例 3

以下示例演示了 Java File isFile() 方法的使用。我们创建了一个 File 引用。然后,我们使用 F:/test 目录创建了一个 File 对象,该目录存在于提供的路径中。现在,使用 getAbsoluteFile() 方法获取目录及其状态,并使用 isFile() 方法检查其状态。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;      
      try {
         // create new files
         f = new File("F:/test");         
    
         // get the file
         File f1 = f.getAbsoluteFile();
         
         // prints the file as file
         System.out.println("Is file: "+f1.isFile());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Is file: false
java_file_class.htm
广告