首頁 > Java > java教程 > 如何在Java中使用@Expose註解從JSON中排除一個欄位?

如何在Java中使用@Expose註解從JSON中排除一個欄位?

PHPz
發布: 2023-09-16 21:49:02
轉載
695 人瀏覽過

如何在Java中使用@Expose註解從JSON中排除一個欄位?

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)<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中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板