Path接口已添加到Java 7中的Java NIO中。Path接口位于java.nio.file包中,因此Java Path接口的标准名称是java.nio.file.Path。 Java Path实例表示文件系统中的路径。路径可以用来定位文件或目录。实体的路径可以是两种,一种是绝对路径,另一种是相对路径。绝对路径是从根到实体的位置地址,而相对路径是相对于其他路径的位置地址。
java.nio.file.Path的getNameCount()方法用于返回路径中名称元素的数量。如果此路径仅表示根组件,则方法将返回1。
用法:
int getNameCount()
参数:此方法不接受任何内容。
返回值:此方法返回路径中的元素数;如果此路径仅表示根组件,则返回1。
以下示例程序旨在说明getNameCount()方法:
示例1:
// Java program to demonstrate
// java.nio.file.Path.getNameCount() 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 getNameCount()
int nameCount = path.getNameCount();
// print NameCount
System.out.println("NameCount in Path: "
+ nameCount);
}
}
输出:
NameCount in Path: 3
示例2:
// Java program to demonstrate
// java.nio.file.Path.getNameCount() 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 getNameCount()
int nameCount = path.getNameCount();
// print NameCount
System.out.println("NameCount in Path: "
+ nameCount);
}
}
输出:
NameCount in Path: 2
示例3:
// Java program to demonstrate
// java.nio.file.Path.getNameCount() 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:");
// call getNameCount()
int nameCount = path.getNameCount();
// print NameCount
System.out.println("NameCount in Path: "
+ nameCount);
}
}
输出:
NameCount in Path: 1
参考文献: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#getNameCount()
相关用法
- 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 getName(int)用法及代码示例
- Java Path toFile()用法及代码示例
- Java Path subpath()用法及代码示例
- Java Path startsWith()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Path getNameCount() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。