Is there a good date parser for Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:12:18Z http://stackoverflow.com/feeds/question/222245 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java 8 Is there a good date parser for Java? Horcrux7 2008-10-21T15:13:54Z 2009-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#222262 12 Answer by Petteri Hietavirta for Is there a good date parser for Java? Petteri Hietavirta 2008-10-21T15:18:20Z 2008-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#222265 6 Answer by Jon Skeet for Is there a good date parser for Java? Jon Skeet 2008-10-21T15:18:52Z 2008-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#222267 1 Answer by Ichorus for Is there a good date parser for Java? Ichorus 2008-10-21T15:19:06Z 2008-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#222272 1 Answer by codeLes for Is there a good date parser for Java? codeLes 2008-10-21T15:21:35Z 2008-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#222275 0 Answer by Joey Gibson for Is there a good date parser for Java? Joey Gibson 2008-10-21T15:22:01Z 2008-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#222282 3 Answer by Joe Liversedge for Is there a good date parser for Java? Joe Liversedge 2008-10-21T15:23:46Z 2008-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#225293 2 Answer by madlep for Is there a good date parser for Java? madlep 2008-10-22T11:15:11Z 2008-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#364632 1 Answer by John Pile for Is there a good date parser for Java? John Pile 2008-12-13T01:29:45Z 2008-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#1268828 0 Answer by dfa for Is there a good date parser for Java? dfa 2009-08-12T21:30:29Z 2009-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>