I tried

    DateFormat fmt = new SimpleDateFormat("MMMM dd, yyyy");
    Date d = fmt.parse("June 27,  2007");

Exception in thread "main" java.text.ParseException: Unparseable date: "June 27, 2007"

The java docs say i should use four characters to match the full form. I'm only able to use MMM successfully with abbreviated months like "Jun" but i need to match full form.

Text: For formatting, if the number of pattern letters is 4 or more, the full form is used; otherwise a short or abbreviated form is used if available. For parsing, both forms are accepted, independent of the number of pattern letters.

http://java.sun.com/j2se/1.6.0/docs/api/java/text/SimpleDateFormat.html

link|improve this question

2  
You have two spaces in your date string. – Anon. Feb 8 '10 at 1:37
Are you sure you're using Java 6? Those two lines of code you pasted is working fine for me; no exceptions. – aberrant80 Feb 8 '10 at 1:39
@Anon.: That extra space has nothing to do with the error. – Mark Byers Feb 8 '10 at 2:49
Thanks @Mark Byers, the locale was the solution. – tommy chheng Feb 8 '10 at 4:47
1  
mark the answer as correct then! – Beau Martínez Feb 8 '10 at 6:31
feedback

1 Answer

up vote 4 down vote accepted

You are probably using a locale where the month names are not "January", "February", etc. but some other words in your local language.

Try specifying the locale you wish to use, for example Locale.US:

DateFormat fmt = new SimpleDateFormat("MMMM dd, yyyy", Locale.US);
Date d = fmt.parse("June 27,  2007");

Also, you have an extra space in the date string, but actually this has no effect on the result. It works either way.

link|improve this answer
so does the extra space have some influence in the parse error? – Beau Martínez Feb 8 '10 at 2:40
@Beau Martínez: No, that has no effect whatsoever. I've updated my comment to address that point since it has been brought up not just by you, but by others in the comments too. – Mark Byers Feb 8 '10 at 2:49
feedback

Your Answer

 
or
required, but never shown

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