I have two date strings say , "2011-04-29" and "2011-01-28" , and i want to compare them using Joda Time. Is there a way to do that ?. An example would be really appreciated.
Thanks
|
|
First you need to parse them. Use
Then use
|
||||
|
|
|
Can also be used ltn4java the library as follows:
The download page of the Library is http://code.google.com/p/ltn4java/downloads/list |
|||
|
|
|
If your date strings are in format "yyyy-MM-dd" you can apply simple string comparison:
The result will be TRUE if s1 is lexicographically "bigger" than s2 and that's what you need. To get more info read javadoc for compareTo() method. |
|||||
|
|
|
In addition to @Bozho's answer we can use AbstractInterval.isAfter :
|
|||
|
|