Home > Java > javaTutorial > body text

How to get file path in java

爱喝马黛茶的安东尼
Release: 2019-12-27 10:47:16
Original
5773 people have browsed it

How to get file path in java

First type:

File f = new File(this.getClass().getResource("/").getPath());
System.out.println(f);
Copy after login

Result:

C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin
Copy after login

Get the project where the current class is located path.

If "/" is not added

File f = new File(this.getClass().getResource("").getPath());
System.out.println(f);
Copy after login

Result:

C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin\com\test
Copy after login

Get the absolute path of the current class.

Second type:

File directory = new File("");//参数为空
String courseFile = directory.getCanonicalPath();
System.out.println(courseFile);
Copy after login

Result:

C:\Documents and Settings\Administrator\workspace\projectName
Copy after login
Copy after login

Get the project path of the current class.

Third method:

URL xmlpath = this.getClass().getClassLoader().getResource("selected.txt");
System.out.println(xmlpath);
Copy after login

Result:

file:/C:/Documents%20and%20Settings/Administrator/workspace/projectName/bin/selected.txt
Copy after login

Get the path to the selected.txt file in the src directory of the current project.

Fourth method:

System.out.println(System.getProperty("user.dir"));
Copy after login

Result:

C:\Documents and Settings\Administrator\workspace\projectName
Copy after login
Copy after login

Get the current project path.

Fifth method:

System.out.println( System.getProperty("java.class.path"));
Copy after login

Result:

C:\Documents and Settings\Administrator\workspace\projectName\bin
Copy after login

Get the current project path.

PHP Chinese website has a large number of free JAVA introductory tutorials, everyone is welcome to learn!

The above is the detailed content of How to get file path in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!