Java tutorial
import java.io.File; public class Main { public static void main(String[] args) throws Exception { // create new files File f = new File("test.txt"); File path = f.getCanonicalFile(); System.out.print("Absolute Pathname " + path); } }