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)
相关用法
- Java Path hashCode()用法及代码示例
- Java Path getFileSystem()用法及代码示例
- Java Path getParent()用法及代码示例
- Java Path toUri()用法及代码示例
- Java Path compareTo()用法及代码示例
- Java Path normalize()用法及代码示例
- Java Path isAbsolute()用法及代码示例
- Java Path getRoot()用法及代码示例
- Java Path toString()用法及代码示例
- Java Path equals()用法及代码示例
- Java Path toAbsolutePath()用法及代码示例
- Java Path toFile()用法及代码示例
- Java Path resolve()用法及代码示例
- Java Path subpath()用法及代码示例
- Java Path startsWith()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Path getName(int) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。