如何在Java 中美化列印JSON
如果您正在使用json-simple 庫並且需要美化您的JSON 資料為了提高可讀可讀可讀可讀可讀性性,您需要在其他地方尋找解決方案。
Google 的GSON 庫是一個流行的選擇此任務:
import com.google.gson.*; Gson gson = new GsonBuilder().setPrettyPrinting().create(); JsonParser jp = new JsonParser(); JsonElement je = jp.parse(uglyJsonString); String prettyJsonString = gson.toJson(je);
此庫的較新版本靜態解析JSON 字符串:
Gson gson = new GsonBuilder().setPrettyPrinting().create(); JsonElement je = JsonParser.parseString(uglyJsonString); String prettyJsonString = gson.toJson(je);
不要忘記在Gradle 配置中包含必要的依賴項:
implementation 'com.google.code.gson:gson:2.8.7'
以上是如何使用 Gson 在 Java 中漂亮列印 JSON?的詳細內容。更多資訊請關注PHP中文網其他相關文章!