Mega Code Archive

 
Categories / Java Tutorial / File
 

Getting an Absolute Filename Path from a Relative Filename Path

import java.io.File; public class Main {   public static void main(String[] argv) throws Exception {     File file = new File("filename.txt");     file = file.getAbsoluteFile();   } }