Get Relative Paths in Java
Description
The following code shows how to get Relative Paths.
Example
//from w w w . jav a2 s. co m
import java.io.File;
public class Main {
public static void main(String[] a) {
File myFile = new File("output.txt");
System.out.println(myFile.getAbsolutePath());
}
}
The code above generates the following result.