Is there a good date parser for Java? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T09:12:18Zhttp://stackoverflow.com/feeds/question/222245http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java8Is there a good date parser for Java?Horcrux72008-10-21T15:13:54Z2009-08-12T21:30:29Z
<p>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. </p>
<p>For example </p>
<ul>
<li>if I do not enter the year (only day and month) then the current year should be used. </li>
<li>if the year is 08 then it should not parse 0008 because the current year pattern has 4 digits.</li>
</ul>
<p>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.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222262#22226212Answer by Petteri Hietavirta for Is there a good date parser for Java?Petteri Hietavirta2008-10-21T15:18:20Z2008-10-21T15:18:20Z<p>Check Joda Time, and its Freaky Formatters. <a href="http://joda-time.sourceforge.net/userguide.html#Input_and_Output" rel="nofollow">http://joda-time.sourceforge.net/userguide.html#Input_and_Output</a></p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222265#2222656Answer by Jon Skeet for Is there a good date parser for Java?Jon Skeet2008-10-21T15:18:52Z2008-10-21T15:18:52Z<p>(Edited for clarity.)</p>
<p>Personally, I think strict is good. So many different situations call for different rules around relaxed parsing, it's impossible to really put that into a common library comprehensively.</p>
<p>However, I <em>would</em> thoroughly recommend <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> instead of the built-in date/time classes in general. Their formatters and parsers are thread-safe and immutable, which helps too. Joda Time has some support for relaxed parsing, as shown in the other answer, but you should expect to have to provide some of the rules yourself.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222267#2222671Answer by Ichorus for Is there a good date parser for Java?Ichorus2008-10-21T15:19:06Z2008-10-21T15:19:06Z<p>Use DateFormat ... Current standard until the welcome respite of Joda.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222272#2222721Answer by codeLes for Is there a good date parser for Java?codeLes2008-10-21T15:21:35Z2008-10-24T15:46:50Z<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html" rel="nofollow">Calendar</a> is usually the way to go, but understand that most Java Date management will be handled on your part if you want it done properly. <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/TimeZone.html" rel="nofollow">Timezone</a> is a good thing to look into if you have to manage international/cross-zone info. <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> is also a neat thing and is the inspiration behind the new suggested Date/Time concepts to be added to Java in <a href="http://today.java.net/pub/a/today/2008/09/18/jsr-310-new-java-date-time-api.html" rel="nofollow">JSR 310</a>.</p>
<p>Hope this is helpful.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222275#2222750Answer by Joey Gibson for Is there a good date parser for Java?Joey Gibson2008-10-21T15:22:01Z2008-10-21T15:22:01Z<p>I would have to say +1 for JodaTime. In addition to parsing, Joda makes just about every date-related operation better.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222282#2222823Answer by Joe Liversedge for Is there a good date parser for Java?Joe Liversedge2008-10-21T15:23:46Z2008-10-21T15:23:46Z<p>From <a href="http://stackoverflow.com/questions/43842/how-would-you-programmatically-create-a-pattern-from-a-date-that-is-stored-in-a">43642</a>, although not necessarily a duplicate:</p>
<p>See Apache Commons' <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/time/DateUtils.html" rel="nofollow">DateUtils</a>. There's a <code>parseDate</code> method that takes your <code>String</code> and multiple patterns to try and spits out a <code>Date</code> instance.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/225293#2252932Answer by madlep for Is there a good date parser for Java?madlep2008-10-22T11:15:11Z2008-10-22T11:15:11Z<p>I would say <a href="https://jchronic.dev.java.net/" rel="nofollow">JChronic</a> if you're looking for something that will parse dates from natural "fuzzy" human input.</p>
<p>But I see that they've got a note on the site saying that the project is going to be deleted in 30 days due to inactivity :(</p>
<p>I've used both JChronic and Chronic (the original Ruby version) with great success.</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/364632#3646321Answer by John Pile for Is there a good date parser for Java?John Pile2008-12-13T01:29:45Z2008-12-13T01:37:25Z<p>The POJava project on SourceForge has a 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.</p>
<p>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.</p>
<p>Proj: <a href="http://sourceforge.net/project/showfiles.php?group_id=226950" rel="nofollow">POJava</a>
Docs: <a href="http://pojava.org/examples/datetime.html" rel="nofollow">HOWTO use DateTime</a></p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/1268828#12688280Answer by dfa for Is there a good date parser for Java?dfa2009-08-12T21:30:29Z2009-08-12T21:30:29Z<p>I tried to implement an extensible PHP's <code>strtotime</code> in Java <a href="http://stackoverflow.com/questions/1268174/phps-strtotime-in-java/1268380#1268380">in this answer</a></p>