What date format is '2010-10-11T22:10:10.000Z' ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
That's an ISO8601 date format. If you're looking to actually parse a date in that format (your question doesn't really make your intentions clear), have a look at these other questions. |
||||
|
|
|
It is ISO 8601 format expressed in UTC (i.e. it is not carrying the timezone offset) |
||||
|
|
|
Where did you get that string from? XML? Then use: http://download.oracle.com/javase/6/docs/api/javax/xml/bind/DatatypeConverter.html Or better: consider to use JAXB |
|||
|
|