
Change /bd save to save JSON pretty-printed
ChiriVulpes opened this issue ยท 1 comments
This is the way I write JsonObjects to strings in my mod:
private static String getJsonString (final JsonObject json, final String indent) {
try {
final StringWriter stringWriter = new StringWriter();
final JsonWriter jsonWriter = new JsonWriter(stringWriter);
jsonWriter.setLenient(true);
jsonWriter.setIndent(indent == null ? "" : indent);
Streams.write(json, jsonWriter);
return stringWriter.toString();
} catch (final IOException e) {
return null;
}
}
And then you just provide the method with the string it should indent with. Passing null or an empty string does minified JSON (like it is currently).