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.