I'm trying to parse the date from a certificate to verify its validity and this error is shown:

Unparseable date: "Mon Dec 05 09:47:18 CST 2011"

The SimpleFormat I'm currently using is:

Date date = new SimpleDateFormat("EEE mmm dd HH:mm:ss z yyyy").parse(inputDate);
link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

Try using MMM instead of mmm for the month name part. Also check which locale you're using, as obviously different locales have different month and day names.

link|improve this answer
Ah there, I had to use Locale.ENGLISH. Now it works. – Karl Goblecoque Dec 5 '11 at 16:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.