I'm trying to convert a date from String
to a Date
object:
String dateString = "Mon, 04 Sep 2017 18:30:28";
String dateFormat = "EEE, dd MMM yyyy HH:mm:ss";
Results in the following exception:
java.text.ParseException: Unparseable date: "Mon, 04 Sep 2017 18:30:28"
I tried different strings and formats and the problems seems to be the name of week ('EEE'). Without it works perfectly.
Also this works perfectly:
String dateString = "04 Sep 2017 18:30:28, Mon";
String dateFormat = "dd MMM yyyy HH:mm:ss, EEE";
Month and weekdays are abbreviated text. The text is language dependent and if you don't provide a specific Locale when instantiating the SimpleDateFormatter the system's Locale is used instead. The reason why your parsing fails with the weekday and not the month can be that the abbreviated name of the month in your system's default language is coincidentally the same as in English.
Here is some code how you should parse a date with text:
with
toParse
being a string containing your date as text.