gpt4 book ai didi

java - 我如何反序列化Jackson的秒数时间戳?

转载 作者:行者123 更新时间:2023-12-01 19:08:09 27 4
gpt4 key购买 nike

我有一些以秒为单位的时间戳(即Unix时间戳)的JSON:

{"foo":"bar","timestamp":1386280997}


要求Jackson将其反序列化为带有DateTime字段的对象作为时间戳,结果为 1970-01-17T01:11:25.983Z,该时间在该时间段后不久出现,因为Jackson假定它以毫秒为单位。除了撕开JSON并添加一些零外,我如何让Jackson理解秒时间戳?

最佳答案

我编写了一个自定义的deserializer以秒为单位处理时间戳(Groovy语法)。

class UnixTimestampDeserializer extends JsonDeserializer<DateTime> {
Logger logger = LoggerFactory.getLogger(UnixTimestampDeserializer.class)

@Override
DateTime deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
String timestamp = jp.getText().trim()

try {
return new DateTime(Long.valueOf(timestamp + '000'))
} catch (NumberFormatException e) {
logger.warn('Unable to deserialize timestamp: ' + timestamp, e)
return null
}
}
}


然后,我注释了我的POGO以将其用于时间戳记:

class TimestampThing {
@JsonDeserialize(using = UnixTimestampDeserializer.class)
DateTime timestamp

@JsonCreator
public TimestampThing(@JsonProperty('timestamp') DateTime timestamp) {
this.timestamp = timestamp
}
}

关于java - 我如何反序列化Jackson的秒数时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59512078/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com