码迷,mamicode.com
首页 > 编程语言 > 详细

java readProperties

时间:2017-09-29 17:44:13      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:class   div   span   col   app   exce   etc   inpu   ret   

@Deprecated
public static Map<String, String> readProperties(String propertiesFile) {
    Properties prop = new Properties();
    try {
        prop.load(new InputStreamReader(
                App.class.getClassLoader().getResourceAsStream(propertiesFile + ".properties"), UTF8));
    } catch (Exception ex) {
        throw SystemException.wrap(ex);
    }

    Map<String, String> map = new HashMap<>();
    for (String key : prop.stringPropertyNames()) {
        map.put(key, isNull(prop.getProperty(key), ""));
    }
    return map;
}

 

java readProperties

标签:class   div   span   col   app   exce   etc   inpu   ret   

原文地址:http://www.cnblogs.com/Googler/p/7611761.html

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