Core API
How do I get the absolute path of a file in Java?
The following code snippet shows you how to get the absolute path of a file. To do this we use the java.io.File object getAbsolutePath() method. package org.kodejava.io; import java.io.File; public class AbsolutePathExample { public static void main(String[] args) { // Create an instance of File called file. File file = new File("README.md"); // Now we […]
Artikel oleh Wayan · Sumber: Kode Java ↗
Terjemahan artikel ini belum tersedia. Isi asli ditampilkan.
The following code snippet shows you how to get the absolute path of a file. To do this we use the java.io.File object getAbsolutePath() method.
package org.kodejava.io;
import java.io.File;
public class AbsolutePathExample {
public static void main(String[] args) {
// Create an instance of File called file.
File file = new File("README.md");
// Now we want to know where is exactly this file is located in our file
// system. To do this we can use the getAbsolutePath() method of the File
// class.
String absolutePath = file.getAbsolutePath();
// Print out the JavaProgrammingBook.pdf location to the console.
System.out.println("AbsolutePath = " + absolutePath);
}
}
Here is the result of the program:
AbsolutePath = F:\Wayan\Kodejava\kodejava-example\README.md
