Flexjson 경량입니다. Java 객체를 JSON 형식으로 직렬화 및 역직렬화하기 위한 라이브러리입니다. 지도를 직렬화할 수도 있습니다. serialize() 사용 JSONSerializer 메소드 클래스에서 대상 인스턴스의 얕은 직렬화를 수행합니다.
구문
public String serialize(Object target)
예시
import flexjson.JSONSerializer; import java.util.*; public class JsonSerializeMapTest { public static void main(String[] args) { JSONSerializer serializer = new JSONSerializer().prettyPrint(true); Student student = new Student("Adithya", "Sai", 28, "Hyderabad"); Map<String, Object> map = new HashMap<String, Object>(); map.put("Student1", "Raja"); map.put("Student2", "Ravi"); map.put("my_student", student); String jsonStr = serializer.serialize(map); System.out.println(jsonStr); } } // Student class class Student { private String firstName; private String lastName; private int age; private String address; public Student() {} public Student(String firstName, String lastName, int age, String address) { super(); this.firstName = firstName; this.lastName = lastName; this.age = age; this.address = address; } public String getFirstName() { return firstName; } public String getLastName() { return lastName; } public int getAge() { return age; } public String getAddress() { return address; } public String toString() { return "Student[ " + "firstName = " + firstName + ", lastName = " + lastName + ", age = " + age + ", address = " + address +" ]"; } }
출력
{ "my_student": { "address": "Hyderabad", "age": 28, "class": "Student", "firstName": "Adithya", "lastName": "Sai" }, "Student1": "Raja", "Student2": "Ravi" }