Die Gson-Bibliothek bietet eine einfache Möglichkeit, Felder mithilfe des Modifikators transient von der Serialisierung auszuschließen. Wenn wir Felder in einer Java-Klasse als transient festlegen, kann Gson ihre Serialisierung und Deserialisierung ignorieren. Beispielimport 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;
}
}
{
"firstName": "Raja",
"age": 28
}
Das obige ist der detaillierte Inhalt vonWie schließe ich ein Feld während der Gson-Serialisierung in Java aus?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!