从JSON反序列化时,我的日期是用Unix纪元时间写的(/ Date(1379542610387 + 1000)/)。
我理解以这种方式序列化Json中的日期是非常标准的,但是如何才能将此值反序列化为Joda DateTime?
当杰克逊看到这样的价值时,它会吐出来:
Invalid format: "/Date(1379542610387+1000)/"
答案 0 :(得分:0)
private static final Pattern pat = Pattern.compile("/Date\\((\d+)[\\+\\-](\\d+)\\)/");
...
String data = "/Date(1379542610387+1000)/";
Matcher m = pat.matcher(data);
if (m.matches())
{
long time = Long.valueOf(m.group(1));
int offset = Integer.valueOf(m.group(2));
System.out.printf("time=%d offset=%d\n",time,offset);
}
else
// not a date in the recognized format ...