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);
'java' 카테고리의 다른 글
JAVA - 유니코드를 한글(문자열)로 변환 (0) | 2018.09.17 |
---|---|
java8에서 timezone 다루기 (0) | 2018.09.05 |
java - telnet 대신 포트 방화벽 확인하기 port check (0) | 2017.11.22 |
65279 character java (0) | 2017.07.10 |
PreparedStatement 객체 재사용하기 (0) | 2017.05.03 |