I have tried the example given in stack overflow
how to get a list of dates between two dates in java
The code works perfectly. But there is a small problem. I don’t get the end date also in my List. How do I choose to include/exclude the start date and include the end date ?
Do, I do that manually by using remove() and add() or can Joda API do that for me?
Based on API, it seems there is no direct way to choose include.
One hack may be, just add +1 to number of days.