Java NIO Path 接口
2020-10-14 本文已影响0人
HoneyMoose
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 进行测试。
@TestpublicvoidgetPathfromFile(){// Convert File to PathFile file =newFile("/home/cwikius/test/file.txt"); Path path = file.toPath(); assertNotNull(path); }
将 Path 转换为 File
请考察下面的代码,可以将 path 转换为文件。
@TestpublicvoidgetPathToFile(){// Convert Path to FilePath path = Paths.get("/home/cwikius/test/file.txt"); File file = path.toFile(); assertNotNull(file); }