Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

วิธีแปลง bean เป็นวัตถุ JSON โดยไม่รวมคุณสมบัติบางอย่างโดยใช้ JsonConfig ใน Java


The JsonConfig class เป็นคลาสยูทิลิตี้ที่ช่วยกำหนดค่ากระบวนการซีเรียลไลซ์เซชั่น เราสามารถแปลง bean เป็นวัตถุ JSON ที่มีคุณสมบัติบางอย่างที่สามารถยกเว้นได้โดยใช้ setExcludes() วิธีการของ JsonConfig และส่งผ่านอินสแตนซ์การกำหนดค่า JSON นี้ไปยังอาร์กิวเมนต์ คงที่ เมธอด fromObject() ของ JSONObject .

ไวยากรณ์

public void setExcludes(String[] excludes)

ในตัวอย่างด้านล่าง เราสามารถแปลง bean เป็นอ็อบเจ็กต์ JSON ได้โดยการยกเว้นคุณสมบัติบางส่วน

ตัวอย่าง

import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
public class BeanToJsonExcludeTest {
   public static void main(String[] args) {
      Student student = new Student("Raja", "Ramesh", 35, "Madhapur");
      JsonConfig jsonConfig = new JsonConfig();
      jsonConfig.setExcludes(new String[]{"age", "address"});
      JSONObject obj = JSONObject.fromObject(student, jsonConfig);
      System.out.println(obj.toString(3)); //pretty print JSON
   }
   public static class Student {
      private String firstName, lastName, address;
      private int age;
      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;
      }
   }
}

ในผลลัพธ์ด้านล่าง อายุ และ ที่อยู่ สามารถยกเว้นคุณสมบัติได้

ผลลัพธ์

{
   "firstName": "Raja",
   "lastName": "Ramesh"
}