Are there any libraries for Java that allow you to interpret dates like "Yesterday", "Next Monday", ...
He was asking about libraries, that article is referring to core Java features.
stevedbrown
2009-07-27 15:51:25
I thought your answer was useful.
carrier
2009-07-27 16:33:07
+2
A:
A library like Joda-Time is probably as close as you're gonna get. It doesn't convert strings, but offers much more functionality than the Java default Date
class.
Here is a utility class that provides some of the functions you're looking for, but again without fuzzy string conversion.
pianoman
2009-07-27 15:33:26