Skip to content
Advertisement

Tag: minify

How do I get the compact/minified form of pretty-printed JSON in Java?

How do I make Jackson’s build() method pretty-print its JSON output? is an example that pretty-prints the JSON string. I need to take the pretty-printed version of JSON string and then convert it to the compact/minified form. How can it be done? I need to convert this: to this: I tried to remove ‘n’, ‘t’, and ‘ ‘ characters; but

Advertisement