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."
