Is there a good *strict* date parser for Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T06:13:28Zhttp://stackoverflow.com/feeds/question/489538http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/489538/is-there-a-good-strict-date-parser-for-java2Is there a good *strict* date parser for Java?MetroidFan20022009-01-28T21:47:37Z2009-09-28T08:43:19Z
<p>Is there a good, <em>strict</em> 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":</p>
<p>parse this: 40/40/4353</p>
<p>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?</p>
http://stackoverflow.com/questions/489538/is-there-a-good-strict-date-parser-for-java/489574#48957410Answer by yawmark for Is there a good *strict* date parser for Java?yawmark2009-01-28T21:57:33Z2009-01-28T22:04:31Z<p>I don't see that <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda</a> recognizes that as a valid date. Example:</p>
<pre><code>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
}
</code></pre>
<p><br />
<br />
As best as I can tell, neither does <a href="http://java.sun.com/javase/6/docs/api/java/text/DateFormat.html" rel="nofollow">DateFormat</a> with <a href="http://java.sun.com/javase/6/docs/api/java/text/DateFormat.html#setLenient(boolean)" rel="nofollow">setLenient(false)</a>. Example:</p>
<pre><code>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'
}
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/489538/is-there-a-good-strict-date-parser-for-java/1486012#14860120Answer by saidalihassan for Is there a good *strict* date parser for Java?saidalihassan2009-09-28T08:43:19Z2009-09-28T08:43:19Z<p>my anwers are 8 ,16 and 28</p>