Gson은 Google에서 만든 Java JSON 라이브러리입니다. Gson을 사용하면 JSON을 생성하고 JSON을 Java 객체로 변환할 수 있습니다. 기본적으로 Gson은 JSON을 컴팩트 형식으로 인쇄할 수 있습니다. Gson 예쁜 인쇄를 활성화하려면 GsonBuilder 클래스의 setPrettyPrinting() 메서드를 사용하여 Gson 인스턴스를 구성해야 합니다. 이 메서드는 예쁜 인쇄를 위해 페이지에 맞는 JSON을 출력하도록 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!