似乎你需要同时定义日期和时间部分的格式或使用基于字符串的格式。例如:
Gson gson = new GsonBuilder() .setDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz").create();或使用java.text.DateFormatGson gson = new GsonBuilder() .setDateFormat(DateFormat.FULL, DateFormat.FULL).create();
或使用序列化程序:
我相信格式化程序无法产生时间戳,但是此串行器/解串器对似乎可以正常工作
JsonSerializer<Date> ser = new JsonSerializer<Date>() { @Override public JsonElement serialize(Date src, Type typeOfSrc, JsonSerializationContext context) { return src == null ? null : new JsonPrimitive(src.getTime()); }};JsonDeserializer<Date> deser = new JsonDeserializer<Date>() { @Override public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { return json == null ? null : new Date(json.getAsLong()); }};Gson gson = new GsonBuilder() .registerTypeAdapter(Date.class, ser) .registerTypeAdapter(Date.class, deser).create();
如果使用Java 8或更高版本,则应使用上述序列化器/反序列化器,如下所示:
JsonSerializer<Date> ser = (src, typeOfSrc, context) -> src == null ? null : new JsonPrimitive(src.getTime());JsonDeserializer<Date> deser = (jSon, typeOfT, context) -> jSon == null ? null : new Date(jSon.getAsLong());
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)