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

java读取自定义的.properties 配置文件 中的key-value值

时间:2020-03-19 21:56:33      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:shm   @param   property   fileinput   java读取   names   public   turn   路径   

  /**
     * 读取 .properties 配置文件 
     * @param propertiesUrl 配置文件的路径
     * @return 配置文件中的key-value值
     */
    public static Map<String, String> getProperties(String propertiesUrl) {
        Map<String, String> resultMap = new HashMap<String, String>();
        Properties prop = new Properties();
        try {
            // 读取属性文件a.properties
            InputStream in = new BufferedInputStream(new FileInputStream(propertiesUrl));
            // 加载属性列表
            prop.load(in);
            Iterator<String> it = prop.stringPropertyNames().iterator();
            while (it.hasNext()) {
                String key = it.next();
                resultMap.put(key, prop.getProperty(key));
                System.out.println("key: "+key+",      value: "+prop.getProperty(key));
            }
            in.close();
        } catch (Exception e) {
            System.out.println(e);
        }
        return resultMap;
    }

 

java读取自定义的.properties 配置文件 中的key-value值

标签:shm   @param   property   fileinput   java读取   names   public   turn   路径   

原文地址:https://www.cnblogs.com/52KT9/p/12527038.html

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