标签:
1 import java.io.IOException; 2 import java.io.InputStream; 3 import java.util.Properties; 4 /** 5 * 6 * 类: ProUtil <br> 7 * 描述: 属性配置文件读取类 <br> 8 * 作者: poseidon<br> 9 * 版本: 1.0<br> 10 * 时间: 2015-7-17 上午09:20:17 11 */ 12 public class ProUtil { 13 public static Properties propertie =null; 14 static { 15 propertie = new Properties(); 16 InputStream inputStream = ProUtil.class.getResourceAsStream("/config.properties"); 17 try { 18 propertie.load(inputStream); 19 inputStream.close(); 20 } catch (IOException e) { 21 } 22 } 23 24 public static void main(String[] args) { 25 System.out.println("--->"+ProUtil.propertie.get("username")); //username 26 } 27 }
标签:
原文地址:http://www.cnblogs.com/sun-rain/p/4653499.html