码迷,mamicode.com
首页 > 其他好文 > 详细

读取配置文件参数

时间:2017-03-04 12:26:51      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:inf   catch   fileinput   logs   etc   context   let   conf   ssi   

配置文件代码:

技术分享

 

java代码:

try{
     Properties prop = new Properties(); 
     //读取属性文件horizon.properties
     String params = request.getSession().getServletContext().getRealPath("/")+"WEB-INF\\workflow-conf\\properties\\horizon.properties";
     InputStream in = new BufferedInputStream (new FileInputStream(params));
     prop.load(in);     ///加载属性列表
     String basicVacationDay = prop.getProperty("basicVacationDay");
     String tallestVacationDay = prop.getProperty("tallestVacationDay");
     String base = prop.getProperty("base");
     in.close();
}catch(Exception e){
     e.printStackTrace();
}

 

读取配置文件参数

标签:inf   catch   fileinput   logs   etc   context   let   conf   ssi   

原文地址:http://www.cnblogs.com/henuyuxiang/p/6500712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!