Get Absolute path of the file in Java
Description
The following code shows how to get Absolute path of the file.
Example
//from www . j a v a 2s. c o m
import java.io.File;
public class Main {
public static void main(String[] args) {
File file = new File(File.separator + "Java" + File.separator + "folder");
System.out.println(file.getPath());
System.out.println(file.getAbsolutePath());
}
}
The code above generates the following result.