java中File类的getPath(),getAbsolutePath(),getCanonicalPath()区别
1.getPath()得到的文件构造时参数中给出的路径Filefile=newFile(".\\hello.txt");System.out.println(file.getPath());输出的路径为.\hello.txt。Filefile=newFile("E:\\workspace\\java\\hello.txt");System.out.println(file.getPath());输