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


Java Path getName(int)用法及代碼示例


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

java.nio.file.Path的getName(int index)方法,用於將此路徑的名稱元素作為Path對象返回。我們將index作為參數傳遞,index表示要返回的name元素的索引。在目錄層次結構中最接近根的元素的索引為0。離根最遠的元素的索引為count-1。

用法:


Path getName(int index)

參數:此方法接受單個參數索引,該索引是元素的索引。

返回值:此方法返回name元素。

異常:如果索引為負,索引大於或等於元素數,或者此路徑的名稱元素為零,則拋出此方法和Exception IllegalArgumentException異常。

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

// Java program to demonstrate 
// java.nio.file.Path.getName(int index) 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:\\temp\\DS and algo"
                        + "\\algorithim and data struc"
                        + "\\Problem sets"); 
  
        // call getName(int i) to get the 
        // element at index i 
        Path indexpath = path.getName(3); 
  
        // print ParentPath 
        System.out.println("Index 3: "
                           + indexpath); 
    } 
}
輸出:
Index 3: Problem sets

示例2:

// Java program to demonstrate 
// java.nio.file.Path.getName(int index) 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:\\eclipse\\configuration"
                        + "\\org.eclipse.update"); 
  
        // call getName(int i) to get 
        // the element at index i 
        Path indexpath = path.getName(2); 
  
        // print ParentPath 
        System.out.println("Index 2: "
                           + indexpath); 
    } 
}
輸出:
Index 2: org.eclipse.update

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#getName(int)



相關用法


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