与 Jackson 一起从 ASP.NET 反序列化日期
我的 json 字符串(从 ASP.NET Rest 服务返回)中有一个日期,如下所示: "created": "/Date(1277931782420-0700)/"
Jackson 无法解析这个日期。我可以编写自己的日期格式并将其传递给 mapper.getDeserializationConfig().setDateFormat();
但我想知道是否有更简单/更好的方法来做到这一点......
I have a date in a json string (returned from an ASP.NET rest service) that looks like this: "created": "/Date(1277931782420-0700)/"
Jackson is not able to parse this date. I can write my own date format and pass it in to mapper.getDeserializationConfig().setDateFormat();
but i was wondering if there is an easier/better way to do this...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为定义日期格式是一种合理的方法。或者,您可以定义自己的 JsonDeserializer,注册它,但这不是任何更简单的方法(但如果您需要更复杂的解析,可能会更强大)。
I think defining date format is a reasonable way to do it. Alternatively you could define your own JsonDeserializer, register it, but it's not any simpler way (but may be more powerful if you need more complex parsing).