File path
File path = new File(".");
System.out.println(path.getAbsolutePath()); //--> 프로젝트 폴더의 주소가 출력됨
String path = FileTest.class.getResource("").getPath(); // 현재 클래스의 절대 경로를 가져온다.
File fileInSamePackage = new File(path + "test.properties"); // path 폴더 내의 test.properties 를 가리킨다.
System.out.println(path.getAbsolutePath()); //--> 프로젝트 폴더의 주소가 출력됨
String path = FileTest.class.getResource("").getPath(); // 현재 클래스의 절대 경로를 가져온다.
File fileInSamePackage = new File(path + "test.properties"); // path 폴더 내의 test.properties 를 가리킨다.
댓글
댓글 쓰기