I have problems finding a java date pattern that correctly reads this date from a string:
2012-01-17T11:53:40+00:00
If the timezone would be standard (+0000), this pattern would work:
yyyy-MM-dd'T'HH:mm:ssZ
but this is not the case. The small z doesn’t match either.
In Java 7, you can use the letter
Xto represent an ISO 8601 time zone.