- getPath()得到的文件构造时参数中给出的路径。
例如:
File file = new File(".\test.txt");
System.out.println(file.getPath());
输出的路径为 .\test.txt。
File file = new File("E:\workspace\java\test.txt");
System.out.println(file.getPath());
输出的路径为 E:\workspace\java\test.txt。
- getAbsolutePath()返回的是文件的绝地路径。
例如:
File file = new File(".\test.txt");
System.out.println(file.getAbsolutePath());
输出的路径为 E:\workspace\java\est.txt。
File file = new File("E:\workspace\java\test.txt");
System.out.println(file.getAbsolutePath());
输出的路径为 E:\workspace\java\test.txt。
- getCanonicalPath()也是返回文件的绝对路径,但会去除[..]这样的符号,即返回的是标准的绝地路径。
例如:
File file = new File("..\java\test.txt");
System.out.println(file.getAbsolutePath());
System.out.println(file.getCanonicalPath());
getAbsolutePath()输出的路径为 E:\workspace..\java\test.txt。
getCanonicalPath()输出的路径为 E:\workspace\java\test.txt。