Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

up vote 17 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.

share|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
Damn I've been looking for this way too long, thanks a lot! +1 – T_D May 8 at 6:56

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

Using javac version 1.6.0_24 and java version 1.6.0_24.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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