[자바] 현재 애플리케이션이 구동되는 위치 구하기
프로그래밍/자바2022. 11. 13. 18:21
이 경로를 알아야 이를 기반으로 다른 파일의 위치를 지정해줄 수 있습니다.
Path currentRelativePath = Paths.get("");
String s = currentRelativePath.toAbsolutePath().toString();
System.out.println("Current absolute path is: " + s);
참고:
댓글 영역