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...

link|improve this question

64% accept rate
What was the solution? I am not able to get a Java SimpleDateFormat to parse ASP JSON dates so I am wondering what date format implementation you used. – Nathan Dec 7 '11 at 2:32
we ended up switching to the standard GMT format on the server which jackson has no problem with... – Ben Dec 7 '11 at 8:43
In my case I have no control over the remote service I am integrating with. I have created my own basic implementation of java.text.DateFormat which handles ASP.Net JSON date strings. – Nathan Dec 7 '11 at 11:19
feedback

1 Answer

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).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.