any library that can pretty-print json in java, I'm using json-simple?
|
|
|||||
|
|
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:
|
|||||||||||
|
|
I used org.json inbuilt methods to pretty print the data.
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. |
|||
|
|
|
Gson is good choice! easy to use, fast, reliable. Here is the link: http://code.google.com/p/google-gson/ well documented |
|||
|
|
|
The following JSON Formatter is very simple and straightforward to use. |
|||
|
|
|
Pretty printing with GSON in one line:
|
|||
|
|
|
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. |
||||
|
|
|
In JSONLib you can use this:
From the JavaDoc:
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). |
|||
|
|