vote up 2 vote down star
2

Is there a good, strict date parser for Java? I have access to Joda-Time but I have yet to see this option. I found the "Is there a good date parser for Java" question, and while this is related it is sort of the opposite. Whereas that question was asking for a lenient, more fuzzy-logic and prone to human error parser, I would like a strict parser. For example, with both JodaTime (as far as I can tell) and simpleDateFormat, if you have a format "MM/dd/yyyy":

parse this: 40/40/4353

This becomes a valid date. I want a parser that knows that 40 is an invalid month and date. Surely some implementation of this exists in Java?

flag

72% accept rate
Really? The year is certainly valid, but as for the day and moth, it is not. I have to see that. If I remember well the extra months will be added to the year, isn't? – Oscar Reyes Jan 28 at 21:53
Apparently it does this, it just started working. I lack the power to close this question, however. – MetroidFan2002 Jan 28 at 22:03
Joda time will be added to Java SE finally. This is featured in the front page ( java.sun.com/javase ): JSR 310: A New Java Date/Time API. It says it is "..mainly based on the Joda Time API" ( today.java.net/pub/a/…) – Oscar Reyes Jan 28 at 22:05
@Metroid: About closing. I guess marking the answer as accepted will be enough. – Oscar Reyes Jan 28 at 22:06
@Oscar: I simply didn't see the close link until close (1) appeared. My mistake. – MetroidFan2002 Jan 28 at 23:21
show 1 more comment

2 Answers

vote up 10 vote down check

I don't see that Joda recognizes that as a valid date. Example:

strict = org.joda.time.format.DateTimeFormat.forPattern("MM/dd/yyyy")
try {
    strict.parseDateTime('40/40/4353')
    assert false
} catch (org.joda.time.IllegalFieldValueException e) {
    assert 'Cannot parse "40/40/4353": Value 40 for monthOfYear must be in the range [1,12]' == e.message
}



As best as I can tell, neither does DateFormat with setLenient(false). Example:

try {
    df = new java.text.SimpleDateFormat('MM/dd/yyyy')
    df.setLenient(false)
    df.parse('40/40/4353')
    assert false
} catch (java.text.ParseException e) {
    assert e.message =~ 'Unparseable'
}

Hope this helps!

link|flag
Which version of JodaTime are you using? – MetroidFan2002 Jan 28 at 21:57
1.6 certainly exhibits this behaviour. – Jon Skeet Jan 28 at 22:00
That's really odd. I had a test that was failing, but for some reason it works now and I get that exception you mentioned. Very strange. Joda time it is, then! :) – MetroidFan2002 Jan 28 at 22:03
1  
I'm using Joda 1.5.2. – yawmark Jan 28 at 22:05
@yawmark. I think you drop some Perl code there "=~" – Oscar Reyes Jan 28 at 22:20
show 2 more comments
vote up 0 vote down

my anwers are 8 ,16 and 28

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.