java实现yaml转json方法
public static JSONObject toJSONObject() {
//初始化Yaml解析器
Yaml yaml = new Yaml();
File file = new File("");
//读入文件
Object result= yaml.load(new FileInputStream(file));
return JSON.parseObject(JSON.toJSONString(result));
}
public static JSONObject toJSONObject(String yamlContent) {
Yaml yaml = new Yaml();
Object result = yaml.load(yamlContent);
return JSON.parseObject(JSON.toJSONString(result));
}