2010. 2. 19. 19:17
properties 파일 로딩하기 그거/Java2010. 2. 19. 19:17
config.properties 파일은 CLASSPATH에 있다고 가정한다.
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
is = classLoader.getResourceAsStream("config.properties");
Properties properties = new java.util.Properties();
properties.load(is);
System.out.println(properties);
is = classLoader.getResourceAsStream("config.properties");
Properties properties = new java.util.Properties();
properties.load(is);
System.out.println(properties);
이리 하면.. 로딩된다. ㅎㅎ
'그거 > Java' 카테고리의 다른 글
eclipse breakpoint에 condition 설정하기 (0) | 2010.07.22 |
---|---|
Visual VM을 이용해서 모니터링하기~ (0) | 2010.03.05 |
정규표현식을 이용해서 img 태그의 src 추출하기~ (2) | 2010.02.08 |
XML 특수 문자 파싱 오류 확인 (0) | 2010.01.29 |
[Java] Inner Class에 이런 것이 있었군요... (0) | 2009.09.29 |