I have the following DateFormat
in Java:
DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM Z'T'HH:mm:ss");
When I try to parse the following date I get an 'Unparseable date' exception: "2015-02-23T10:47:00+10:00"
.
What DateFormat
should I use instead?