如何使用gson将日期序列化为长?

2022-09-03 09:04:18

我最近将我们的一些序列化从 切换到 .发现杰克逊将日期序列化为长。JacksonGson

但是,默认情况下,Gson 将日期序列化为字符串。

使用 Gson 时,如何将日期序列化为多头?谢谢。


答案 1

第一个类型适配器执行反序列化,第二个类型适配器执行序列化。

Gson gson = new GsonBuilder()
        .registerTypeAdapter(Date.class, (JsonDeserializer<Date>) (json, typeOfT, context) -> new Date(json.getAsJsonPrimitive().getAsLong()))
        .registerTypeAdapter(Date.class, (JsonSerializer<Date>) (date, type, jsonSerializationContext) -> new JsonPrimitive(date.getTime()))
        .create();

用法:

String jsonString = gson.toJson(objectWithDate1);
ClassWithDate objectWithDate2 = gson.fromJson(jsonString, ClassWithDate.class);
assert objectWithDate1.equals(objectWithDate2);

答案 2

您可以使用一种类型的适配器执行两个方向:

public class DateLongFormatTypeAdapter extends TypeAdapter<Date> {

    @Override
    public void write(JsonWriter out, Date value) throws IOException {
        if(value != null) out.value(value.getTime());
        else out.nullValue();
    }

    @Override
    public Date read(JsonReader in) throws IOException {
        return new Date(in.nextLong());
    }

}

Gson Builder:

Gson gson = new GsonBuilder()
        .registerTypeAdapter(Date.class, new DateLongFormatTypeAdapter())
        .create();