A SimpleDateFormat for ISO 8601 (Java in General forum at JavaRanch)
In an XML file, a date is formatted using ISO 8601 convention. For example: 2005-04-01T13:38:09-08:00 The last part, "-08:00", is the timezone. How to parse such a string? If I use SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"), I can only parse 2005-04-01T13...