Showing posts with label Read Working Directory. Show all posts
Showing posts with label Read Working Directory. Show all posts

Monday, November 10, 2008

How to Read Working Directory in Java

This posting is tutorial to get working directory from java application. Working directory means a directory where our java application running.



package readworkingdirektory;

import java.io.IOException;

/**
 *
 * @author Ratno Kustiawan
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        // TODO code application logic here
        System.out.println(System.getProperty("user.dir"));
        
    }

}

Read More......