getAbsolutePath 和 getCanonicalPath 有什么区别
Java新手问题:在文件类中getAbsolutePath()和getcanonicalPath()之间有什么区别。我无法从文档中获取含义。在下面的代码中,它们的输出是相同的。
public class copyFile {
public static void main(String[] args) throws IOException {
File inputFile = new File("/home/kit.ho/");
System.out.println("get AbsolutePath");
System.out.println(inputFile.getAbsolutePath());
System.out.println("get CanonicalPath");
System.out.println(inputFile.getCanonicalPath());
}
}