I am trying to parse a date, but I am oddly getting an exception.

This is the code:

import java.util.Date;

String strDate = "Wed, 09 Feb 2011 12:34:27";
Date date;
SimpleDateFormat FORMATTER =  new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss");
try {
  date = FORMATTER.parse(strDate.trim());
  System.out.println(date);
} catch (ParseException e) {
  e.printStackTrace();
}

The exception is:

java.text.ParseException: Unparseable date: "Wed, 09 Feb 2011 12:34:27" at java.text.DateFormat.parse(DateFormat.java:337) at DateTest.main(DateTest.java:17)

I have read the documentation and I think my pattern is correct. So I don't understand...

Any idea?

Thanks!

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

It's probably because of the default locale on your computer which is not english.

You should use:

new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss", Locale.ENGLISH);

instead.

link|improve this answer
+1 good catch... – aioobe May 27 '11 at 16:00
OMG! The locale! Thanks :). I'll accept the answer in 5 minutes. – Amokrane Chentir May 27 '11 at 16:04
feedback

It parses just fine for me. (And ideone.com agrees.)

Using javac version 1.6.0_24 and java version 1.6.0_24.

link|improve this answer
Didn't know ideone. Worth a vote. – Amokrane Chentir May 27 '11 at 16:04
feedback

Your Answer

 
or
required, but never shown

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