반응형
- Method 1
String userDirectory = System.getProperty("user.dir"); System.out.println("path : " + userDirectory);
- Method 2
String userDirectory = new File("").getAbsolutePath(); System.out.println("path : " + userDirectory);
- Method 3
이 방법은 JDK 7 이상에서 동작합니다.
String userDirectory = FileSystems.getDefault() .getPath("") .toAbsolutePath() .toString(); System.out.println("path : " + userDirectory);
- Method 4
이 방법 또한 JDK 7 이상에서 동작합니다.
String userDirectory = Paths.get("") .toAbsolutePath() .toString(); System.out.println("path : " + userDirectory);
출처 : https://www.baeldung.com/java-current-directory
728x90
반응형
'웹 개발' 카테고리의 다른 글
JPA에서 생성일, 수정일 자동 입력하는 방법 (0) | 2021.08.08 |
---|---|
Jackson Convert Object to Map preserving Date type (0) | 2021.08.07 |
Copying a HashMap (0) | 2021.07.31 |
[Spring] @Controller와 @RestController 차이 (0) | 2021.07.31 |
spring boot utf8 설정 (0) | 2021.07.25 |