I found the reason why it output the "null" value because of this:
```java
org.yaml.snakeyaml.representer.SafeRepresenter
protected class RepresentNull implements Represent {
public Node representData(Object data) {
return representScalar(Tag.NULL, "null");
}
}
```
I think I can get the value by override this, is there a better way to solve it or config it by DumperOptions?
```
public Node representData(Object data) {
return representScalar(Tag.NULL, "");
}
```