Writing Java object instance to YAML using Jackson

邮差的信 提交于 2019-12-18 06:39:07

问题


I have a 'Example' Pojo class as mentioned below. Can any one tel to save instance of Example class to YAML file using Jackson.

public class Example {

String name;
int value;

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public int getValue() {
    return value;
}

public void setValue(int value) {
    this.value = value;
}

}


回答1:


Jackson has a module that supports YAML. Ensure that you add the required dependency to your project, then you can use it as following:

// Create an ObjectMapper mapper for YAML
ObjectMapper mapper = new ObjectMapper(new YAMLFactory());

// Write object as YAML file
mapper.writeValue(new File("/path/to/yaml/file"), example);

Alternatively you can write your object as a string:

// Write object as YAML string
String yaml = mapper.writeValueAsString(example);


来源:https://stackoverflow.com/questions/46445834/writing-java-object-instance-to-yaml-using-jackson

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!