The code

    String strDate = "2010-12-01";
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd");
    Date parsedDate = sdf.parse(strDate);
    System.out.println(parsedDate);

will, dependend on your locale, produce the following output:

Fri Jan 01 00:12:00 CET 2010

The date is not parsed correctly, since i expect the 1st dec and not the 1st jan. I know, months are numbered from 0 to 11, so the 12 becomes a 0 for january.

I have several solutions for this problem in mind, but all of them will produce at least 3-4 additional lines of code. So my question is:

What is the nicest way to solve this "problem"?

I can't imagine that it takes more than 2-3 lines to parse a simple date...

//edit: Shame on me for this question. Forgive me. thx folks

link|improve this question

4  
Incorrect diagnosis. mm is minutes. That is why you are getting 12 minutes (which should have given a hint). – Thilo Aug 31 '11 at 13:01
feedback

2 Answers

up vote 9 down vote accepted

change yyyy-mm-dd to yyyy-MM-dd


M   Month in year   Month   July; Jul; 07  

m   Minute in hour  Number  30

See

link|improve this answer
2  
+1 speed demon :) – Bohemian Aug 31 '11 at 13:01
feedback

Your date format is incorrect: Months are MM (not mm, which is for minutes). Try this:

"yyyy-MM-dd"

The reason you are getting January is that you haven't given a month to the parser (you gave year-minute-day). January, the first month, is the default month allocated to the date if not provided by the input. The 12 got parsed into the minute field (fairly obviously)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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