I am porting some of our app from c# to java. Some data objects get xml serialized and stored for later use. The built in .net xml serialization automatically saves DateTime properties in the format below:
2009-05-11T16:47:08.6033346-04:00
How can I get this into a Date object in Java? I read that the date format is ISO 8601 which labled as SortableDateTime in the MSDN documentation.
Thanks!