Java工程获取相对路径,绝对路径方法

时间:2022-11-27 17:46:31

本次使用File提供的函数进行获取当前路径。
例子:假如当前路径为C:\test

针对getCanonicalPath(),getAbsolutePath(),getPath()三种方法分别说明:
注:content文件夹为test文件夹下的子文件夹

File directory = new File(“content”);
directory.getCanonicalPath(); //得到的是C:\test\content
directory.getAbsolutePath(); //得到的是C:\test\content
direcotry.getPath(); //得到的是content

File directory = new File(“.”);
directory.getCanonicalPath(); //得到的是C:\test
directory.getAbsolutePath(); //得到的是C:\test.
direcotry.getPath(); //得到的是.

File directory = new File(“..”);
directory.getCanonicalPath(); //得到的是C:\
directory.getAbsolutePath(); //得到的是C:\test..
direcotry.getPath(); //得到的是..

解释说明:
1. getCanonicalPath()函数,“.”就表示当前的文件夹,而”..“则表示当前文件夹的上一级文件夹。
2. getAbsolutePath()函数,则不管”.”,“..”,返回当前的路径加上你在new File()时设定的路径。
3. getPath()函数,得到的只是你在new File()时设定的路径。