读取配置文件

Java代码  读取配置文件
  1. protected Properties load() {  
  2.     try {  
  3.         Properties prop = new Properties();  
  4.         String path = "prop/conf.properties";  
  5.   
  6.         String os = System.getProperty("os.name");  
  7.         if (os.toLowerCase().startsWith("win")) {  
  8.             path = "/src/prop/conf.properties";  
  9.         }    
  10.         InputStream in = new FileInputStream(System.getProperty("user.dir") + File.separator + path);  
  11.         prop.load(in);//属性文件将该流加入的可被读取的属性中  
  12.         return prop;  
  13.     } catch (Exception ex) {  
  14.         log.error("加载配置文件异常,系统over@@", ex);  
  15.         System.exit(0);  
  16.     }  
  17.     return null;  
  18. }  
上一篇:图像处理详解之图像透明度


下一篇:系统诊断小技巧(7):利用Iptables进行排查和诊断的简易方案