使用Jackson将Java对象实例写入YAML

时间:2017-09-27 10:43:05

标签: java jackson yaml jackson2 jackson-modules

我有一个'示例' Pojo类如下所述。 任何一个tel都可以使用Jackson保存Example类的实例到YAML文件。

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 个答案:

答案 0 :(得分:9)

杰克逊有module that supports YAML。确保将required dependency添加到项目中,然后可以按如下方式使用它:

// 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);

或者,您可以将对象编写为字符串:

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