toRealPath()方法要求文件必须存在,如果使用toAbsolutePath()方法,则不需要此文件。
import java.io.IOException; /*来自 时 代 Java - nowjava.com*/ import java.nio.file.LinkOption; import java.nio.file.Path; import java.nio.file.Paths; public class Main { public static void main(String[] args) { Path path = Paths.get("/folder1/folder2/folder4", "test.txt"); // convert path to "real" path try { Path real_path = path.toRealPath(LinkOption.NOFOLLOW_LINKS); System.out.println(