I got the following date format that I get from an API (Yes I tried to get them to change the API... dailywtf story):
\/Date(1310481956000+0200)\/
How can I convert this into a Java Date? (java.util.Date)
This comes from a .NET JSON web service.
|
I got the following date format that I get from an API (Yes I tried to get them to change the API... dailywtf story):
How can I convert this into a Java Date? (java.util.Date) This comes from a .NET JSON web service. |
|||||||
|
|
Without knowing what the date/time string stands for, let me make a guess. The The following code seem to indicate it as well:
Prints |
|||||
|
First, get "them" to clearly and precisely tell you exactly what that date format means. (If they won't or can't you could guess; see below.) Next write a custom parser to parse the String and extract the information content. Finally, convert the information content into a form that matches one of the My guess is that the |
||||
|
|
|
You'll have to get the format from the API provider but it seems like a epoch + an offset for time zones. To convert it you could try.
Notice i'm not doing anything with the time zone (if that's what it is). You'll have to deal with that but this should get you on the right path. |
|||
|
|