show/hide this revision's text 2 added 404 characters in body

Looks like my problem was using MM/DD/yyyy "MM/DD/yyyy" when I meant MM/dd/yyyyshould have used "MM/dd/yyyy". Uppercase D is "Day in year", while lowercase d is "Day in month".

new SimpleDateFormat("MM/dd/yyyy").parse(dateString);

Works out of

Does the box (at least on Sun's Java 6 JRE)job. Also, "M/d/y" works interchangeably. A closer reading of the SimpleDateFormat API Docs reveals the following:

"For parsing, the number of pattern letters is ignored unless it's needed to separate two adjacent fields."

show/hide this revision's text 1

Looks like my problem was using MM/DD/yyyy when I meant MM/dd/yyyy.

new SimpleDateFormat("MM/dd/yyyy").parse(dateString);

Works out of the box (at least on Sun's Java 6 JRE).