如何使用 Java 中的 @Expose 注释从 JSON 中排除字段?
javajsonobject oriented programmingprogramming
Gson @Expose 注释 可用于标记字段是否公开(包含或不包含),以进行序列化或反序列化。@Expose 注释 可以采用两个参数,每个参数都是布尔值,可以采用值 true 或 false。为了让 GSON 对 @Expose 注释做出反应,我们必须使用 GsonBuilder 类创建一个 Gson 实例,并需要调用 excludeFieldsWithoutExposeAnnotation() 方法,它将 Gson 配置为排除所有没有 Expose 注释的字段,不考虑序列化或反序列化。
语法
public GsonBuilder excludeFieldsWithoutExposeAnnotation()
示例
import com.google.gson.*; import com.google.gson.annotations.*; public class JsonExcludeAnnotationTest { public static void main(String args[]) { Employee emp = new Employee("Raja", 28, 40000.00); Gson gson = new GsonBuilder().setPrettyPrinting().create(); String jsonStr = gson.toJson(emp); System.out.println(jsonStr); gson = new GsonBuilder().setPrettyPrinting().excludeFieldsWithoutExposeAnnotation().create(); jsonStr = gson.toJson(emp); System.out.println(jsonStr); } } // Employee class class Employee { @Expose(serialize = true, deserialize = true) public String name; @Expose(serialize = true, deserialize = true) public int age; @Expose(serialize = false, deserialize = false) public double salary; public Employee(String name, int age, double salary) { this.name = name; this.age = age; this.salary = salary; } }
输出
{ "name": "Raja", "age": 28, "salary": 40000.0 } { "name": "Raja", "age": 28 }