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

Properyies文件的读取

时间:2018-01-02 23:36:43      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:etc   hash   ack   type   while   string   enum   stack   load   

当我们使用Properyies存储数据的时候是以键值对形式的,可以存储到Map数据中,我们就可以用前面的key值来获取后面的value

public Map<String,String> getProperyies(){
        Properties properties = new Properties();
        Map<String, String> stringStringHashMap = new HashMap<>();
        InputStream resourceAsStream = getClass().getResourceAsStream("type.peoperyies");
        try {
            properties.load(resourceAsStream);
            Enumeration<?> enumeration = properties.propertyNames();
            while(enumeration.hasMoreElements()){
                String o = (String) enumeration.nextElement();
                String property = properties.getProperty(o);
                stringStringHashMap.put(o,property);
            }

        } catch (IOException e) {
            e.printStackTrace();
        }
          return stringStringHashMap;
    }

这就是Properyies文件的读取!小伙伴赶快试一试吧!

Properyies文件的读取

标签:etc   hash   ack   type   while   string   enum   stack   load   

原文地址:https://www.cnblogs.com/cainiaodongdong/p/8179043.html

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