在 Java 中輕鬆列印漂亮的 JSON
漂亮列印的 JSON 資料使其更具可讀性和更容易理解。如果您正在使用 json-simple 庫,但尚未找到內建的漂亮列印功能,這裡有一個常用的解決方案:
Google 的 GSON 庫提供了一種便捷的方法來實現此目的。請依照以下步驟操作:
建立啟用漂亮列印的 Gson 實例:
Gson gson = new GsonBuilder().setPrettyPrinting().create();
建立 JsonParser 來解析原始 JSON>
JsonParser jp = new JsonParser(); JsonElement je = jp.parse(uglyJsonString);
String prettyJsonString = gson.toJson(je);
JsonElement je = JsonParser.parseString(uglyJsonString); String prettyJsonString = gson.toJson(je);
import com.google.gson.*;
implementation 'com.google.code.gson:gson:2.8.7'
以上是如何使用 GSON 在 Java 中輕鬆漂亮地列印 JSON 資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!