그거/Java

properties 파일 로딩하기

뽀기 2010. 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);

   이리 하면.. 로딩된다. ㅎㅎ