Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
this looks correct, I would not reuse toDate I would have a new variable called nextDate, dayAfterToDate or something more explicit and self explanatory – Jarrod Roberson Sep 28 '10 at 1:44
@fuzzy lollipop, good point. – Anthony Sep 28 '10 at 1:49

5 Answers

That would work.

It doesn't 'feel' right.

If it is the verbosity that bothers you, welcome to the Java date-time API :-)

share|improve this answer

If you do not like the math in the solution from Tony Ennis

Date someDate = new Date(); // Or whatever
Date dayAfter = new Date(someDate.getTime() + TimeUnit.DAYS.toMillis( 1 ));
share|improve this answer

Yeah, that's right. Java Date APIs feel wrong quite often. I recommend you try Joda Time. It would be something like:

DateTime startDate = ...
DateTime endDate = startDate.plusDays(1);

or:

Instant start = ...
Instant end = start.plus(Days.days(1).toStandardDuration());
share|improve this answer
+1 for the sentiment – Thilo Sep 28 '10 at 1:45
Absolutely! I dislike date arithmetic in java.util.Date so much that on my current I isolated it into a set of 6-8 methods. This was fine, but after I found Joda Time these methods became 1-2 liners and a couple even gained a bit in generality. – Jim Ferrans Sep 28 '10 at 2:44

I believe joda time library makes it much more clean to work with dates.

share|improve this answer

Here's how I do it:

Date someDate = new Date(); // Or whatever    
Date dayAfter = new Date(someDate.getTime()+(24*60*60*1000));

Where the math at the end converts a day's worth of seconds to milliseconds.

share|improve this answer
Why the -1? The number of hours, minutes, and seconds is unlikely to change anytime soon. – Tony Ennis Sep 29 '10 at 11:52
for one thing, this doesn't take into account Calendar things like leap year and leap seconds and other minutia, this is why the equivilent methods on Date() are deprecated and Calendar, and GregorianCalendar exist in the first place. And your code doesn't handle daylight savings time either, naive at best, a source of endless thedailyWTF articles and bugs at worst. – Jarrod Roberson Sep 30 '10 at 20:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.