Java - Unparseable date

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!

15
задан Amokrane Chentir 27 May 2011 в 15:56
поделиться