Java

 

절대경로

this.getClass().getResource("").getPath(); // 현재 자신의 절대 경로
this.getClass().getResource("/").getPath(); // classes 폴더의 최상위 경로
this.getClass().getResource("/com/test/config/config.properties").getPath(); // classes 폴더에서부터 시작하여 해당파일까지의 절대 경로
 
현재 클래스가 상속되는(부모) 클래스라면 클래스명.class.getResource 로 해야 한다.
getClass()는 실행되는 현재 자신(자식클래스가 될 수 있음)을 가리키기 때문이다.
WEB의 절대경로와 다르다..
 

 

new File("").getAbsolutePath() : 절대경로

new File("").getCanonicalPath() : 상대경로


'Programming Language > Java' 카테고리의 다른 글

eclipse jvm 못찾을때  (0) 2012.10.06
JAR안 파일 이미지 경로 설정  (0) 2011.12.02
[펌]JVM 메모리 누수  (0) 2011.11.20
[펌] 자바 성능 개선 코딩법  (0) 2011.11.14
[스크랩] java.io.Console  (0) 2011.01.24

+ Recent posts