📜  Java中的路径 getFileName() 方法及示例

📅  最后修改于: 2022-05-13 01:54:42.890000             🧑  作者: Mango

Java中的路径 getFileName() 方法及示例

Path 接口Java 7中被添加到Java NIO 中。 Path 接口位于Java.nio.file 包中,因此Java Path 接口的全称是Java.nio.file.Path。 Java Path 实例表示文件系统中的路径。路径可以用来定位文件或目录。实体的路径可以有两种类型,一种是绝对路径,另一种是相对路径。绝对路径是从根到实体的位置地址,而相对路径是相对于其他路径的位置地址。

Java.nio.file.PathgetFileName()方法用于返回此路径对象指向的文件或目录的名称。文件名是目录层次结构中离根最远的元素。

句法:

Path getFileName()

参数:此方法不接受任何内容。

返回值:此方法返回此路径对象指向的文件或目录的名称。

下面的程序说明了 getFileName() 方法:
方案一:

// Java program to demonstrate
// java.nio.file.Path.getFileName() method
  
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
    public static void main(String[] args)
        throws IOException
    {
  
        // create object of Path
        Path path = Paths.get("D:/workspace/AmanCV.docx");
  
        // call getFileName() and get FileName path object
        Path fileName = path.getFileName();
  
        // print FileName
        System.out.println("FileName: "
                           + fileName.toString());
    }
}
输出:
FileName: AmanCV.docx

方案二:

// Java program to demonstrate
// java.nio.file.Path.getFileName() method
  
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
    public static void main(String[] args)
        throws IOException
    {
  
        // create object of Path
        Path path = Paths.get("D:/Resume.pdf");
  
        // call getFileName() and get FileName path object
        Path fileName = path.getFileName();
  
        // print FileName
        System.out.println("FileName: "
                           + fileName.toString());
    }
}
输出:
FileName: Resume.pdf

参考资料: https: Java/nio/file/Path.html#getFileName()