我们如何使用Java中的flexjson将对象数组序列化?
Syntax
public String serialize(Object target)登录后复制
Example
import flexjson.JSONSerializer; public class JsonSerializeArrayTest { public static void main(String[] args) { JSONSerializer serializer = new JSONSerializer().prettyPrint(true); Student stud1 = new Student("Adithya", "Sai", 28, "Hyderabad"); Student stud2 = new Student("Jai", "Dev", 30, "Chennai"); Student stud3 = new Student("Ravi", "Chandra", 35, "Pune"); Student[] students = {stud1, stud2, stud3}; String jsonStr = serializer.serialize(students); 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 + " ]"; } }登录后复制