How can I calculate next dates using Java?
For example, if the user gives me the current date in a field like 2011-02-21, then I want to give back the same day of the month for the next two months: 2011-03-21, 2011-04-21.
|
|
Using Joda-Time:
OUTPUT
|
|||||||
|
|
Use Calendar.add(...) Here is the example:
This prints:
(I just wanted to check that this really gives correct result when the next date is in the next year.) |
|||
|
|
|
Using This:
Prints out:
|
|||
|
|
|
|
|||||
|
|
|
|
|||
|
|