show/hide this revision's text 2 The original post made it look like it only interpreted MM-DD-YYYY or DD-MM-YYYY.

The POJava project on SourceForge has a light-weight DateTime object that parses dates from multiple languages (when month is specified as a name) and is configurable between MM-DD-YYYY and DD-MM-YYYY. It parses dates heuristically, picking out the most likely year, month, date, hour, minute, second, and time zone rather than supporting predefined formats. The jar file is about 60K in size.

There is ambiguity in interpretation of a date like "10-08" in that it could be intended as shorthand for either "2008-10-08" or "Oct 2008". You could append the year yourself if you are accepting the sort of shorthand you give in your example.

Proj: POJava Docs: HOWTO use DateTime

show/hide this revision's text 1

The POJava project on SourceForge has a light-weight DateTime object that parses dates from multiple languages (when month is specified as a name) and is configurable between MM-DD-YYYY and DD-MM-YYYY.

There is ambiguity in interpretation of a date like "10-08" in that it could be intended as shorthand for either "2008-10-08" or "Oct 2008". You could append the year yourself if you are accepting the sort of shorthand you give in your example.

Proj: POJava Docs: HOWTO use DateTime