I am looking for a java library that when given from and to date would return a list of dates in weeks,months,quarter or year which ever is most applicable. I have done this manually and i wanted to know if this is already implemented and tested as a part of a standard package.
Example
Given 1/1/2009 , 1/4/2009 it should give 1/1/2009,1/2/2009,1/3/2009,1/4/2009
Given 1/1/2009 , 1/14/2009 it should give 1/1/2009,1/7/2009,1/14/2009
hope you that is clear 🙂
The DateTime class provided by Joda Time has methods such as
plusDays(int),plusWeeks(int),plusMonths(int)which should help.Assuming you want to get all the dates between
startandendin weeks (pseudocode):