我正在尝试在Gson输出中使用自定义日期格式,但.setDateFormat(DateFormat.FULL)
似乎不起作用,与.registerTypeAdapter(Date.class, new DateSerializer())
相同。
就像Gson不关心对象“Date”并以其方式打印它。
我该如何改变?
由于
编辑:
@Entity
public class AdviceSheet {
public Date lastModif;
[...]
}
public void method {
Gson gson = new GsonBuilder().setDateFormat(DateFormat.LONG).create();
System.out.println(gson.toJson(adviceSheet);
}
我总是使用java.util.Date
; setDateFormat()
不起作用:(
答案 0 :(得分:278)
您似乎需要为日期和时间部分定义格式或使用基于字符串的格式。例如:
Gson gson = new GsonBuilder()
.setDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz").create();
Gson 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();
答案 1 :(得分:62)
Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").create();
以上格式对我来说似乎更好,因为它具有高达毫安的精度。
编辑格式引用'Z'
答案 2 :(得分:5)
作为M.L.指出,JsonSerializer在这里工作。但是,如果要格式化数据库实体,请使用java.sql.Date注册序列化程序。不需要解串器。
Gson gson = new GsonBuilder()
.registerTypeAdapter(java.sql.Date.class, ser).create();
此错误报告可能相关:http://code.google.com/p/google-gson/issues/detail?id=230。我使用版本1.7.2。
答案 3 :(得分:4)
如果您讨厌内部类,通过利用功能界面,您可以使用lambda表达式在 Java 8 中编写更少的代码。
JsonDeserializer<Date> dateJsonDeserializer =
(json, typeOfT, context) -> json == null ? null : new Date(json.getAsLong());
Gson gson = new GsonBuilder().registerTypeAdapter(Date.class,dateJsonDeserializer).create();
答案 4 :(得分:0)
这是bug。目前,您要么必须同时设置timeStyle
,要么使用其他答案中描述的替代方法之一。
答案 5 :(得分:0)
我使用的是Gson 2.8.6,今天发现了这个错误。
我的方法允许我们所有现有的客户端(移动/网络/等)继续按原样运行,但是为使用24h格式的客户端增加了一些处理,并且也允许使用千分尺。
Gson rawGson = new Gson();
SimpleDateFormat fmt = new SimpleDateFormat("MMM d, yyyy HH:mm:ss")
private class DateDeserializer implements JsonDeserializer<Date> {
@Override
public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
throws JsonParseException {
try {
return new rawGson.fromJson(json, Date.class);
} catch (JsonSyntaxException e) {}
String timeString = json.getAsString();
log.warning("Standard date deserialization didn't work:" + timeString);
try {
return fmt.parse(timeString);
} catch (ParseException e) {}
log.warning("Parsing as json 24 didn't work:" + timeString);
return new Date(json.getAsLong());
}
}
Gson gson = new GsonBuilder()
.registerTypeAdapter(Date.class, new DateDeserializer())
.create();
我保持序列化相同,因为所有客户端都理解标准的json日期格式。
通常,我认为使用try / catch块不是一个好习惯,但这应该是相当罕见的情况。
答案 6 :(得分:-1)
这根本不起作用。 JSON中没有日期类型。我建议来回序列化ISO8601(格式化不可知和JS compat)。请考虑您必须知道哪些字段包含日期。