What is the correct way to increment a java.util.Date by one day.
I\'m thinking something like
Calendar cal = Calendar.getInstance(); ca
If Java 8 or Joda Time are not an option, you could always opt for Apache DateUtils:
DateUtils.addDays(myDate, 1);