I am going around for a bit trying to parse this strange date format which I can't even find its name: 2016-05-03T10:40:47.559838+00:00
With Java I would convert that into "2016-05-03T10:40:47.559838+0000" (notice the last :
are gone) and use the following pattern "yyyy-MM-dd'T'HH:mm:ss.SSSSSSZ", but it probably does not guarantee me UTC.
What is the correct way of parsing this date into a Joda DateTime in UTC?
Thanks!