Today is February 1, 2011. I am trying to generate a date string for Android in the format "MM/DD/yyyy" using SimpleDateFormat. Here is my code:

Date d = new Date();
String date = (new SimpleDateFormat("MM/DD/yyyy")).format(d);

It returns the following string:

02/32/2011

What is going on here? I can't see anything that I'm doing wrong.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Use "MM/dd/yyyy". You're using the day in year instead of day in month.

http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html

link|improve this answer
d'oh! That was indeed the problem. I can't believe I missed that. Thank you. – rnstewart Feb 1 '11 at 16:08
feedback

dd is placeholder for day of month, not DD.

link|improve this answer
More specifically, "DD" is for day in year, where "dd" is for day in month. – mbaird Feb 1 '11 at 15:55
Yeah, wanted to answer quickly, your reply is more detailed anyway ;) – PeS Feb 1 '11 at 15:59
feedback

Your Answer

 
or
required, but never shown

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