Gson は、Google によって作成された Java JSON ライブラリです。 Gson を使用すると、JSON を生成し、JSON を Java オブジェクトに変換できます。デフォルトでは、Gson は JSON を compact 形式 で印刷できます。 Gson pretty print を有効にするには、GsonBuilder クラスの setPrettyPrinting() メソッドを使用して Gson インスタンスを構成する必要があります。これにより、Gson が、プリティプリントのページです。
public GsonBuilder setPrettyPrinting()
import java.util.*; import com.google.gson.*; public class PrettyJSONTest { public static void main( String[] args ) { Employee emp = new Employee("Raja", "115", "Content Engineer", "Java", "Hyderabad"); Gson gson = new GsonBuilder().setPrettyPrinting().create(); // pretty print String prettyJson = gson.toJson(emp); System.out.println(prettyJson); } } // Employee class class Employee { private String name, id, designation, technology, location; public Employee(String name, String id, String designation, String technology, String location) { super(); this.name = name; this.id = id; this.designation = designation; this.technology = technology; this.location = location; } public String getName() { return name; } public String getId() { return id; } public String getDesignation() { return designation; } public String getTechnology() { return technology; } public String getLocation() { return location; } }
{ "name": "Raja", "id": "115", "designation": "Content Engineer", "technology": "Java", "location": "Hyderabad" }
以上がJavaのGsonライブラリを使用してJSONをきれいに印刷するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。