자바 프로그램이 실행되는 실행 위치 구하기
- getAbsolutePath(): File 객체를 생성할 때 넣어준 경로 또는 프로그램을 실행시킨 위치 정보도 함께 반환
1) File 객체 이용
- 자바 프로그램이 실행되는 실행위치를 구하는것이니까 File객체를 생성할때 경로를
넣어주지 않는다.
public class CurrentPathTest {
public static void main(String[] args) {
File file = new File("");
System.out.println("실행위치: "+ file.getAbsolutePath());
System.out.println();
}
}
방법2) System.getProperty("user.dir") 명령이용하기
public class CurrentPathTest {
public static void main(String[] args) {
String path1 = System.getProperty("user.dir");
System.out.println("실행위치: "+ path1);
}
}