Home > Java > javaTutorial > How to get file path in java

How to get file path in java

爱喝马黛茶的安东尼
Release: 2019-12-27 10:47:16
Original
5924 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:
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
Latest Issues
Install JAVA
From 1970-01-01 08:00:00
0
0
0
Unable to install java
From 1970-01-01 08:00:00
0
0
0
Can java be used as the backend of the web?
From 1970-01-01 08:00:00
0
0
0
Is this in Java language?
From 1970-01-01 08:00:00
0
0
0
Help: JAVA encrypted data PHP decryption
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template