I have a DataTime field that I need to see if it's 10 years or more in the past (Think of expiring certifications). I'm new to Joda, how is that done? Thanks for your help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You'll want to review the docs for the DateTime class. But just to get you moving, the check would look something like the following: 1) You'll need to construct a DateTime which represents 10 years ago...
2) ...and use DateTime.isBefore to compare.
Note there are some subtleties with calendars which Joda does a nice job of abstracting for you; before you get too deep in this, you'll really want to study the docs. |
||||
|
|
|
I have not worked with joda. It might look like |
|||
|
|