Java 路径接口是 Java NIO 2 更新的一部分,Java NIO 在 Java 6 和 Java 7 中接收 Java 路径接口。
Java路径接口已添加到Java 7中的Java NIO。路径接口位于 java.nio.file 包中,所以Java Path接口的完全包名是 java.nio.file.Path。
java.io.File => java.nio.file.Path
可以考察下面的代码来对 Path 进行测试。
@Test
public void getPathfromFile() {
// Convert File to Path
File file = new File("/home/cwikius/test/file.txt");
Path path = file.toPath();
assertNotNull(path);
}
将 Path 转换为 File
请考察下面的代码,可以将 path 转换为文件。
@Test
public void getPathToFile() {
// Convert Path to File
Path path = Paths.get("/home/cwikius/test/file.txt");
File file = path.toFile();
assertNotNull(file);
}