當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Path getFileName()用法及代碼示例


Path接口已添加到Java 7中的Java NIO中。Path接口位於java.nio.file包中,因此Java Path接口的標準名稱是java.nio.file.Path。 Java Path實例表示文件係統中的路徑。路徑可以用來定位文件或目錄。實體的路徑可以是兩種,一種是絕對路徑,另一種是相對路徑。絕對路徑是從根到實體的位置地址,而相對路徑是相對於其他路徑的位置地址。

java.nio.file.Path的getFileName()方法用於返回此路徑對象指向的文件或目錄的名稱。文件名是目錄層次結構中距離根目錄最遠的元素。

用法:


Path getFileName()

參數:此方法不接受任何內容。

返回值:此方法返回此路徑對象指向的文件或目錄的名稱。

以下示例程序旨在說明getFileName()方法:
示例1:

// 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

示例2:

// 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://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#getFileName()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Path getFileName() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。