Java Path getName(int)方法及示例
在Java 7中,Java Path接口 被添加到Java NIO中。Path接口位于java.nio.file包中,所以Java Path接口的完全限定名称是java.nio.file.Path。一个Java Path实例代表文件系统中的一个路径。路径可以用来定位文件或目录。实体的路径有两种类型,一种是绝对路径,另一种是相对路径。绝对路径是指从根到实体的位置地址,而相对路径是指相对于其他路径的位置地址。
java.nio.file.Path 的 getName(int index) 方法用来返回这个路径的名称元素,作为一个Path对象。我们把index作为参数,index代表要返回的名称元素的索引。在目录层次结构中最接近根的元素的索引为0。离根部最远的元素有索引count-1。
语法:
Path getName(int index)
参数: 该方法接受一个参数index,即元素的索引。
返回值: 该方法返回名称元素。
异常: 如果索引为负数,索引大于或等于元素的数量,或者该路径有零个名称元素,该方法会抛出异常 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"
+ "\\algorithm 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)