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.