我是靠谱客的博主 阔达白猫,最近开发中收集的这篇文章主要介绍如何读取yaml(yml)文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class Config {
    //resource文件夹下的yml文件名
    private static final Config CONFIG = new Config("/codes.yml");

    private Map<String, Object> root;

    /**
     * 对工程的yml文件读取处理
     * @return 
     */
    private Config(String... fileNames) {
        Map<String, Object> map = new HashMap<String, Object>(0);
        for (String fileName : fileNames) {
            Map<String, Object> conf = this.getRoot(fileName);
            map = this.marge(map, conf);
        }
        root = map;
    }

    /**
     * 返回对象文件
     * @return 
     */
    public static Config getConfig() {
        return CONFIG;
    }

    /**
     * 获取值
     * @param key
     * @return
     */
    private Object getValue(String key) {
        Object value = root.get(key);

        if (value == null) {
            throw new RuntimeException(String.format(
                    "The value corresponding to the key is not set.key[%s]",
                    key));
        }

        return value;
    }

    /**
     * 获取字符串类型数据
     * @param key
     * @return 
     */
    public String get(String key) {
        Object value = getValue(key);
        return value.toString();
    }

    /**
     * 获取yml文件中对象类型的数据
     * @param key
     * @return 
     */
    public Object getOj(String key) {
    	Object value = getValue(key);
    	return value;
    }


    /**
     * 读取工程resouce下所有的yml文件
     * @param resouce
     * @return
     */
    @SuppressWarnings("unchecked")
    private Map<String, Object> getRoot(String resouce) {
        InputStream in = null;
        try {
            in = Config.class.getResourceAsStream(resouce);
            return (Map<String, Object>) Yaml.load(in);
        } catch (Exception err) {
            throw new RuntimeException(
                    "It failed in reading the configuration file.", err);
        }
    }

    /**
     * 判断两个文件中是否有相同的key值
     * @param map1
     * @param map2
     * @return
     */
    private Map<String, Object> marge(Map<String, Object> map1,
            Map<String, Object> map2) {

        Map<String, Object> marged = new HashMap<String, Object>(map1);

        for (String key : map2.keySet()) {
            if (marged.containsKey(key)) {
                throw new RuntimeException(String.format(
                        "The key overlaps. [%s]", key));
            }
            marged.put(key, map2.get(key));
        }

        return marged;
    }
}

调用:

1.获取字符串对象

Config.getConfig().get("KEY")

  数据格式:

KEY: "key"

2.获取对象

  例 List<Map<String, String>>

Object oj = Config.getConfig().getOj("MapList")
//转换成yml文件中读取的数据类型
List<HashMap<String, String>> mapList = (List<HashMap<String, String>>) oj;

//循环读取
for (int i = 0; i < mapList .size(); i++) {
	String value= mapList .get(i).get("value");
	String key= mapList .get(i).get("key");
    System.out.println("value:" + value + " key:" + key)
}

  数据格式:

MapList:
  - !code {key: "1", value: "test1"}
  - !code {key: "2", value: "test2"}

  例 List<String>

Object oj = Config.getConfig().getOj("LIST")
//转换成yml文件中读取的数据类型
List<String> list = (List<String>) oj;

//循环读取
for (int i = 0; i < list.size(); i++) {
    System.out.println(list.get(i))
}

  数据格式:

LIST:
 - listValue1
 - listValue2

最后

以上就是阔达白猫为你收集整理的如何读取yaml(yml)文件的全部内容,希望文章能够帮你解决如何读取yaml(yml)文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部