I get the following error: ´java.text.ParseException: Unparseable date: "Aug 31 09:53:19 2011"´ with this format: new SimpleDateFormat("MMM dd HH:mm:ss yyyy");

Does anyone see the problem?

link|improve this question

1  
Looks fine to me. Make sure you're using the SimpleDateFormat object you created with the shown code to actually parse the given date. – bdares Aug 31 '11 at 8:19
feedback

2 Answers

up vote 8 down vote accepted

Make sure you're using the correct locale. (The SimpleDateFormat(String) constructor uses the system default locale, which may not be the one you want to use.)

This works fine on my machine:

String input = "Aug 31 09:53:19 2011";
DateFormat df = new SimpleDateFormat("MMM dd HH:mm:ss yyyy", Locale.US);
System.out.println(df.parseObject(input));

(While using Locale.FRENCH for instance, results in a ParseException.)

link|improve this answer
Thanks for the tip! This bug was tripping me up, too. – Nik Reiman Oct 12 '11 at 12:10
This fixes the problem, but why? what is changed when the locale is french?? – ByteMe Apr 2 at 22:42
feedback

The format itself is OK for the input you gave. But you might get this error if your default locale is set to something where "Aug" is not a valid abbreviation of a month name. Try using for example to Locale.US and you'll see that it will work:

DateFormat df = new SimpleDateFormat("MMM dd HH:mm:ss yyyy", Locale.US);
Date date = df.parse("Aug 31 09:53:19 2011");
link|improve this answer
The locale was indeed the problem, thank you so much! – Stijn.V Aug 31 '11 at 8:33
feedback

Your Answer

 
or
required, but never shown

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