Java - File getParentFile() 方法



描述

Java File getParentFile() 方法返回此抽象路径名的父抽象路径名,如果此路径名未命名父目录,则返回 null。

声明

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

public File getParentFile()

参数

返回值

此方法返回此抽象路径名命名的父目录的抽象路径名,如果路径名未命名父目录,则返回 null。

异常

示例 1

以下示例演示了 Java File getParentFile() 方法的用法。我们创建了两个 File 引用。然后,我们使用当前目录中不存在的 test.txt 创建一个 File 对象。然后,我们使用 createNewFile() 方法创建该文件。现在,使用 getAbsoluteFile() 方法获取文件,并使用 getParentFile() 方法获取文件父级的名称并打印出来。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;
      String path = "";
      boolean bool = false;
      
      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();
         
         // returns true if the file exists
         bool = f1.exists();
         
         // returns name of parent of the file
         path = f1.getParentFile().getName();
         
         // if file exists
         if(bool) {
         
            // prints the file
            System.out.print("Parent: " + path);
         }
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

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

Parent: Tester

示例 2

以下示例演示了 Java File getParentFile() 方法的用法。我们创建了一个 File 引用。然后,我们使用提供的目录中存在的 F:/test.txt 创建一个 File 对象。现在,使用 getAbsoluteFile() 方法获取文件,并在使用 getParentFile() 方法获取其名称后打印其父级名称。

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 parent of file
         System.out.println("Parent: "+f1.getParentFile().getAbsolutePath());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

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

Parent: F:\

示例 3

以下示例演示了 Java File getParent() 方法的用法。我们创建了一个 File 引用。然后,我们使用提供的目录中存在的 F:/test 目录创建一个 File 对象。现在,使用 getAbsoluteFile() 方法获取目录,并使用 getParent() 方法获取其父级名称。

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 parent name
         System.out.println("Parent Directory: "+f1.getParentFile().getAbsolutePath());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

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

Parent Directory: F:\
java_file_class.htm
广告