java中有没有办法缩短目录的绝对路径。
例如:
./data/../system/bin/
=> ./system/bin/
答案 0 :(得分:5)
是的,请使用http://docs.oracle.com/javase/7/docs/api/java/io/File.html#getCanonicalPath()。
File file = new File("C:/Users/../Users");
System.out.println(file.getAbsolutePath()); // C:\Users\..\Users
System.out.println(file.getCanonicalPath()); // C:\Users