首页 > 其他 > 详细

加载Properties配置文件

时间:2017-09-18 16:42:15      阅读:249      评论:0      收藏:0      [点我收藏+]
/** 
     * 加载Properties配置文件
     * 
     * @author ZhangHaiNing
     * @param file 要读取的文件 
     * @return
     */
    public static Properties getProp(String file){
            Properties prop=new Properties();
        try {
            String url = TelChargeDwr.class.getResource("").getPath().replaceAll("%20", " ");    
            String path = url.substring(0, url.indexOf("WEB-INF")) + "WEB-INF/";      
            prop.load(new FileInputStream(path+file)); 
        } catch (IOException e) {
            e.printStackTrace();
        }
        return prop;
    }

 

加载Properties配置文件

原文:http://www.cnblogs.com/zhncnblogs/p/7543610.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!