file.getPath() getAbsolutePath() getCanonicalPath()区别

来源:互联网 发布:古典舞演出服淘宝网 编辑:程序博客网 时间:2024/06/06 13:23
package file;import java.io.File;import java.io.IOException;public class getFilePath { public static void main(String[] args) throws IOException {     System.out.println("------默认相对路径,取得路径不同-----");     File f = new File("..\\src\\file");     System.out.println(f.getPath());     System.out.println(f.getAbsolutePath());     System.out.println(f.getCanonicalPath());     System.out.println("------默认相对路径,取得路径不同-----");     File f2 = new File(".\\src\\file");     System.out.println(f2.getPath());     System.out.println(f2.getAbsolutePath());     System.out.println(f2.getCanonicalPath());     System.out.println("------默认绝对路径,取得路径相同-----");     File f3 = new File("C:\\src\\file");     System.out.println(f3.getPath());     System.out.println(f3.getAbsolutePath());     System.out.println(f3.getCanonicalPath());//   执行结果为://   ------默认相对路径,取得路径不同-----//   ..\src\file//   C:\workspace\Tip\..\src\file//   C:\workspace\src\file//   ------默认相对路径,取得路径不同-----//   .\src\file//   C:\workspace\Tip\.\src\file//   C:\workspace\Tip\src\file//   ------默认绝对路径,取得路径相同-----//   C:\src\file//   C:\src\file//   C:\src\file//  //   比较可以得到//   getPath()返回的是构造方法里的路径,构造方法给的string是什么就是什么不做任何处理//   getAbsolutePath()返回的是 user.dir+getPath(),也就是工程路径加上构造方法中的路径//   getCanonicalPath()返回的是将符号完全解析的路径,也就是全路径。会进行上级目录计算。 }}
0 0