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"));
}
}
No comments:
Post a Comment