21
Java로 현재 작업 디렉토리를 얻는 방법?
java를 사용하여 현재 작업 디렉토리에 액세스하고 싶습니다. 내 코드 : 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); 산출: Current dir: C:\WINDOWS\system32 Current dir using System: C:\WINDOWS\system32 C 드라이브가 현재 디렉토리가 아니기 때문에 출력이 올바르지 않습니다. 현재 디렉토리를 얻는 방법?