java读取Properties文件

来源:互联网 发布:西安网络推广外包公司 编辑:程序博客网 时间:2024/06/16 01:00
注意:配置文件放在src下面
**************************************************

Properties props = new Properties(); props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("config.properties"));
   Enumeration en =props.propertyNames();
   while (en.hasMoreElements()){
   String key = (String)en.nextElement();
   String Property =props.getProperty(key);                  
  System.out.println(key+Property);
}
 
原文地址:http://blog.sina.com.cn/s/blog_d4635afb0101ilhq.html
原创粉丝点击