@Test
public void test6(){
File file1=new File("hello.txt");//相对路径
File file2=new File("E:\\java\\hi.txt");//绝对路径
System.out.println(file1.getPath());
System.out.println(file1.getAbsolutePath());
System.out.println(file2.getPath());
System.out.println(file2.getAbsolutePath());
}
getPath()和getAbsolutePath()是Java中File类的两个方法,用于获取文件或目录的路径信息
getPath(): 返回此抽象路径名的字符串形式。它返回的是相对路径,不包括根路径。getAbsolutePath(): 返回此抽象路径名的绝对路径名字符串。它返回的是从根目录开始的完整路径,包括盘符(在Windows系统中)或根目录(在Unix/Linux系统中)。