Java中的路径 getNameCount() 方法及示例
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() 方法:
方案一:
// 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
方案二:
// 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: Java/nio/file/Path.html#getNameCount()