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

  /**
     * 读取 .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;
    }

猜你喜欢

转载自www.cnblogs.com/52KT9/p/12527038.html