The blue social bookmark and publication sharing system.
Log in with your username.
I've lost my password.
Log in with your OpenID-Provider.
For v2.8.3 the following should work:
YAMLFactory yf = new YAMLFactory(); ObjectMapper mapper = new ObjectMapper(yf); ObjectNode root = (ObjectNode) mapper.readTree(yamlFileIn); // modify root hereFileOutputStream fos = new FileOutputStream(yamlFileOut); SequenceWriter sw = mapper.writerWithDefaultPrettyPrinter().writeValues(fos); sw.write(root);