Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

any library that can pretty-print json in java, I'm using json-simple?

share|improve this question
Reason you want to pretty print it? – epascarello Nov 5 '10 at 12:30
6  
more human readable for debugging – mabuzer Nov 5 '10 at 12:37
Obviously...... – Aerovistae Mar 27 at 14:19

8 Answers

up vote 23 down vote accepted
Gson gson = new GsonBuilder().setPrettyPrinting().create();
JsonParser jp = new JsonParser();
JsonElement je = jp.parse(uglyJSONString);
String prettyJsonString = gson.toJson(je);
share|improve this answer
2  
thanks. It's awesome! – Nishant Sep 19 '11 at 17:19

It seems like GSON supports this, although I don't know if you want to switch from the json library you are using

From the user guide:

Gson gson = new GsonBuilder().setPrettyPrinting().create();
String jsonOutput = gson.toJson(someObject);
share|improve this answer
2  
The problem with GSON, it's complicated, json-simple is far easier. – mabuzer Nov 5 '10 at 12:40
Did you find out how to get json-simple working with integrated pretty-print? – SliverNinja Nov 23 '11 at 8:03
@mabuzer Gave up...just using Gson (for pretty-print) + json-simple for everything else. – SliverNinja Nov 23 '11 at 8:20
I haven't look at this issue in over a year, but if you're willing to modify the source code a bit, code.google.com/p/json-simple/issues/detail?id=22 has some information on enhancing json-simple with pretty-printing. – BuffaloBuffalo Nov 23 '11 at 13:22

I used org.json inbuilt methods to pretty print the data.

JSONTokener tokener = new JSONTokener(uglyJsonString); //tokenize the ugly JSON string
JSONObject finalResult = new JSONObject(tokener); // convert it to JSON object
System.out.println(finalResult.toString(4)); // To string method prints it with specified indentation.

Note: I have observed that this can "re-organize" the key value pairs order. I am relatively new to JSON I have to dig deeper and see if this OK or needs fix.

share|improve this answer

Gson is good choice! easy to use, fast, reliable.

Here is the link: http://code.google.com/p/google-gson/ well documented

share|improve this answer

The following JSON Formatter is very simple and straightforward to use.

http://joncom.be/code/javascript-json-formatter/

share|improve this answer

Pretty printing with GSON in one line:

System.out.println(new GsonBuilder().setPrettyPrinting().create().toJson(jsonString));
share|improve this answer

I think you don't need an aditional libray, but use cutomized output of json-simple library. Check this example: json-simple: Customize JSON outputs.

But, if you just need it for debugging, perhaps it doesn't worth the effort.

share|improve this answer
-1: completely wrong – sparkleshy Feb 14 at 0:30

In JSONLib you can use this:

String jsonTxt = JSONUtils.valueToString(json, 8, 4);

From the JavaDoc:

http://json-lib.sourceforge.net/apidocs/jdk15/net/sf/json/util/JSONUtils.html#valueToString(java.lang.Object, int, int)

public static String valueToString(Object value,
                               int indentFactor,
                               int indent)

Make a prettyprinted JSON text of an object value.

Parameters:

value - The value to be serialized. indentFactor - The number of spaces to add to each level of indentation. indent - The indentation of the top level. Returns: a printable, displayable, transmittable representation of the object, beginning with { (left brace) and ending with } (right brace).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.