I want to get a list of dates between start and end date.If i give the start and end date means, it give the result as the list of all dates including the start and end date.
Thanks in advance.
|
|
|
I suggest to use jodaTime for that
It wouldn't be too hard to implement your own iterator to do this aswell, that would be even nicer. |
|||||||
|
|
|
This one works better
|
|||
|
|
|
please find the below code.
output:
|
||||
|
|
You can also look at the Date.getTime() API. That gives a long to which you can add your increment. Then create a new Date.
and maybe apache commons has something like this in DateUtils, or perhaps they have a CalendarUtils too :) EDIT including the start and enddate may not be possible if your interval is not perfect :) |
|||
|
|
|
One solution would be to create a Some dirty code:
|
||||
|
With Joda-Time , maybe it's better:
It's my solution.... very easy :) |
||||
|
|
|
||||
|
|


