show/hide this revision's text 3 added 263 characters in body

Does anyone know a good date parser for different languages/locales. The built-in parser of Java (SimpleDateFormat) is very strict. It should complete missing parts with the current date.

For example

  • if I do not enter the year (only day and month) then the current year should be used.
  • if the year is 08 then it should not parse 0008 because the current year pattern has 4 digits.

Edit: I want to parse the input from a user. For example if the locale date format of the user is "dd.mm.yyyy" and the user type only "12.11." then the parser should accept this as a valid date with the value "12.11.2008". The target is a good usability.

show/hide this revision's text 2 grammar

Are Is there a good date parser for Java?

Does everyone anyone know a good date parser for different languages/locales. The build in built-in parser of Java (SimpleDateFormat) is very strict. It should complete missing parts with the current date.

For example

  • if I does do not enter the year (only day and month) then the current year should be used.
  • if the years year is 08 then it should not parse 0008 because the current year pattern has 4 digitdigits.
show/hide this revision's text 1

Are there a good date parser for Java?

Does everyone know a good date parser for different languages/locales. The build in parser of Java (SimpleDateFormat) is very strict. It should complete missing parts with the current date.

For example

  • if I does not enter the year (only day and month) then the current year should be used.
  • if the years is 08 then it should not parse 0008 because the current year pattern has 4 digit.