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

PropertiesUtil 工具类 properties文件的读取

时间:2015-08-11 20:50:25      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

public static Map<String, String> readProperties(String path) {
        
        Map<String, String> map = new HashMap<String, String>();
        try {
            Properties props = new Properties();
            path=URLDecoder.decode(path,"utf-8");
//            System.out.println(path);
            props.load(new FileInputStream(path));
            Enumeration<?> enum1 = props.propertyNames();
            while(enum1.hasMoreElements()) {
              String strKey = (String) enum1.nextElement();
              String strValue = props.getProperty(strKey);
              map.put(strKey, strValue);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return map;
    }

 

PropertiesUtil 工具类 properties文件的读取

标签:

原文地址:http://www.cnblogs.com/ButterFuture/p/4721871.html

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