http://hashcode.co.kr/questions/158/현재-작업-디렉토리를-얻을순-없을까요

String current = new java.io.File( "." ).getCanonicalPath();
System.out.println("Current dir:"+current);.

String currentDir = System.getProperty("user.dir");
System.out.println("Current dir using System:" +currentDir);
Posted by 張's blog
,