将map转换为YAML

时间:2025-04-05 09:12:12

 因为项目学习,看了一堆别人写的,运行出来出现一些花里胡哨的东西,所以自己就研究了一下,有用到数组,相对比较全。有问题欢迎提问。

用到的依赖:

<!-- json -->
<dependency>
    <groupId></groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.66</version>
</dependency>
<!--json 转 yml -->
<dependency>
   <groupId></groupId>
   <artifactId>jackson-dataformat-yaml</artifactId>
   <version>2.9.0.pr4</version>
</dependency>
/**
* 需要包
*/
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import .*;



/**
*主方法
*/ 

public static  void getJson() throws Exception{

        Map<String,Object> map = new LinkedHashMap<>();
        List<Map<String,Object>> list = new ArrayList<>();  // 数组
        List<Map<String,Object>> list1 = new ArrayList<>();
        Map<String,Object> map1 = new LinkedHashMap<>();
        Map<String,Object> map3 = new LinkedHashMap<>();
        Map<String,Object> map4 = new LinkedHashMap<>();
        Map<String,Object> map5 = new LinkedHashMap<>();
        ("groups",list);
        (map1);
        ("name","monitor_base");
        ("rules",list1);
        (map3);
        ("alert","CpuUsageAlert_waring");
        ("expr","sum(avg(irate(node_cpu_seconds_total{mode!='idle'}[5m])) without (cpu))by(instance)>0.60");
        ("for","2m");
        ("annotations",map5);
        ("level","warning");
        ("labels",map4);
        ("summary","Instance {{ $ }} CPU usage high");
        ("description","{{ $ }} CPU usage above 60% (current value: {{ $value }})");
        (());
        (map);
        ((map));

        // parse JSON
        JsonNode jsonNodeTree = new ObjectMapper().readTree((map));
        // save it as YAML
        String jsonAsYaml = new YAMLMapper().writeValueAsString(jsonNodeTree);


        Yaml yaml = new Yaml();
        Map<String,Object> map6 = (Map<String, Object>) (jsonAsYaml);


        DumperOptions dumperOptions = new DumperOptions();
        ();
        Yaml wyaml = new Yaml(dumperOptions);
        File dumpfile = new File("D:\\"); //保存yaml
        try(FileWriter writer = new FileWriter(dumpfile)) {
            (map, writer);
        } catch (IOException e) {
            ();
        }


    }