Maison  >  Article  >  Java  >  Comment exclure un champ lors de la sérialisation Gson en Java ?

Comment exclure un champ lors de la sérialisation Gson en Java ?

PHPz
PHPzavant
2023-09-23 15:09:03888parcourir

Comment exclure un champ lors de la sérialisation Gson en Java ?

La bibliothèque Gson fournit un moyen simple d'exclure des champs de la sérialisation à l'aide du modificateur transient. Si nous définissons les champs d'une classe Java comme étant transitoires, Gson peut ignorerleur sérialisationet désérialisation.

Exemple

import com.google.gson.*;
public class GsonTransientFieldTest {
   public static void main(String[] args) {
      Gson gson = new GsonBuilder().setPrettyPrinting().create();
      Person p = new Person("Raja", "Ramesh", 28, 35000.00);
      String jsonStr = gson.<strong>toJson</strong>(p);
      System.out.println(jsonStr);
   }
}
//Person class<strong>
</strong>class Person {
   private String firstName;
   private transient String lastName;
   private int age;
   private transient double salary;
   public Person(String firstName, String lastName, int age, double salary) {
      super();
      this.firstName = firstName;
      this.lastName = lastName;
      this.age = age;
      this.salary = salary;
   }
}

Sortie

{
 "firstName": "Raja",
 "age": 28
}

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer