Gson 基礎教程 —— 自定義類型適配器(TypeAdapter)
1,實現一個類型適配器(TypeAdapter)
自定義類型適配器須要實現兩個接口:java
JsonSerializer<T>sql
JsonDeserializer<T>json
和兩個方法:ide
- public JsonElement serialize(T src, Type typeOfSrc, JsonSerializationContext context);
- public T deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
- throws JsonParseException;
其中 JsonElement 的類層次爲:ui

2,註冊類型適配器
- Gson gson = new GsonBuilder()
- .registerTypeAdapter(Timestamp.class, new TimestampAdapter())
- .create();
3,本身寫的一個 Timestamp 類型適配器
- package com.gdsc.core.adapter;
-
- import java.lang.reflect.Type;
- import java.sql.Timestamp;
-
- import com.google.gson.JsonDeserializationContext;
- import com.google.gson.JsonDeserializer;
- import com.google.gson.JsonElement;
- import com.google.gson.JsonParseException;
- import com.google.gson.JsonPrimitive;
- import com.google.gson.JsonSerializationContext;
- import com.google.gson.JsonSerializer;
-
- public class TimestampAdapter implements JsonSerializer<Timestamp>, JsonDeserializer<Timestamp> {
-
- @Override
- public Timestamp deserialize(JsonElement json, Type typeOfT,
- JsonDeserializationContext context) throws JsonParseException {
- if(json == null){
- return null;
- } else {
- try {
- return new Timestamp(json.getAsLong());
- } catch (Exception e) {
- return null;
- }
- }
- }
-
- @Override
- public JsonElement serialize(Timestamp src, Type typeOfSrc,
- JsonSerializationContext context) {
- String value = "";
- if(src != null){
- value = String.valueOf(src.getTime());
- }
- return new JsonPrimitive(value);
- }
-
- }
歡迎關注本站公眾號,獲取更多信息