I\'ve a DateTime that represent the beginning of a recurring event. A Days (daily period) will represent the recurring period. I assume that this rec
DateTime
Days
You can always use the add method in the Calendar class.
add
Calendar
You could do the following -
Date date = "2013-06-27" ; Calendar cal = Calendar.getInstance(); cal.setTime(date); cal.add(Calendar.DATE, 3); // add 3 days date = cal.getTime();
And so on...