Home > Java > javaTutorial > body text

How to Pretty-Print JSON in Java using Gson?

Patricia Arquette
Release: 2024-11-26 13:04:13
Original
796 people have browsed it

How to Pretty-Print JSON in Java using Gson?

How to Pretty-Print JSON in Java

If you're working with the json-simple library and need to prettify your JSON data for readability, you'll need to look elsewhere for a solution.

Google's GSON library is a popular choice for this task:

import com.google.gson.*;

Gson gson = new GsonBuilder().setPrettyPrinting().create();
JsonParser jp = new JsonParser();
JsonElement je = jp.parse(uglyJsonString);
String prettyJsonString = gson.toJson(je);
Copy after login

A newer version of this library statically parses JSON strings:

Gson gson = new GsonBuilder().setPrettyPrinting().create();
JsonElement je = JsonParser.parseString​(uglyJsonString);
String prettyJsonString = gson.toJson(je);
Copy after login

Don't forget to include the necessary dependency in your Gradle configuration:

implementation 'com.google.code.gson:gson:2.8.7'
Copy after login

The above is the detailed content of How to Pretty-Print JSON in Java using Gson?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template