package test;
import java.io.IOException;
import java.util.Properties;
/**
* @author LimingWang
* @date 2015年4月22日 下午8:39:47
* @version 1.0
*/
public class PropertiesTest {
public static void main(String[] args) {
try {
Properties pro = new Properties();
pro.load(PropertiesTest.class.getResourceAsStream("/db.properties"));
for (Object key : pro.keySet()) {
String value = pro.getProperty((String) key);
System.out.println(key + " : " + value);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
java读取Properties文件
最新推荐文章于 2024-08-07 09:38:29 发布