Programming/Java

Properties 현재 위치 읽어오기

Lawmin 2010. 4. 15. 12:01
Properties prop = new Properties();
InputStream is = getClass().getResourceAsStream(MODELMART_PROPERTIES);  
prop.load(is);
is.close();