What is the correct way to increment a java.util.Date by one day.
I'm thinking something like
Calendar cal = Calendar.getInstance();
cal.setTime(toDate);
cal.add(Calendar.DATE, 1);
toDate = cal.getTime();
It doesn't 'feel' right.
toDateI would have a new variable callednextDate,dayAfterToDateor something more explicit and self explanatory – Jarrod Roberson Sep 28 '10 at 1:44