in Java, how to parse a date string that contains a letter that does not represent a pattern?
\"2007-11-02T14:46:03+01:00\"
String date =\"2007-11-0
You can try
String format = "yyyy-MM-dd'T'HH:mm:ssz";
Reference : from Javadoc
Text can be quoted using single quotes (') to avoid interpretation.