Home > Java > How to Read Working Directory in Java

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;

/**
*
* @????? 🙂
*/
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"));

}

}
Categories: Java
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment