Gson @Expose アノテーション は、フィールドがシリアル化または逆シリアル化のために公開される (含まれるかどうか) かどうかをマークするために使用できます。 @Expose Notes 2 つのパラメータを取得できます。各パラメータはブール値で、値 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)<strong> </strong> 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 }
以上がJavaで@Exposeアノテーションを使用してJSONからフィールドを除外するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。