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

I want to add one day to a particular date. How can I do that?

Date dt = new Date();

Now I want to add one day to this date.

share|improve this question
possible duplicate of How can I increment a date by one day in Java? – alain.janinm May 29 '12 at 18:09

8 Answers

up vote 41 down vote accepted

Solution 1: You can use the Calendar class for that:

Calendar c = Calendar.getInstance(); 
c.setTime(dt); 
c.add(Calendar.DATE, 1);
dt = c.getTime();

Solution 2: You should seriously consider using the Joda library, because of the various shortcomings of the Date class. With Joda you can do the following:

DateTime dtOrg = new DateTime(dt);
DateTime dtPlusOne = dtOrg.plusDays(1);
share|improve this answer
5  
+1 for Joda time – belugabob Jun 17 '09 at 7:25

In core Java, Calendar is recommended for date manipulation.

Check this out: http://www.java2s.com/Tutorial/Java/0040__Data-Type/0580__Calendar.htm

share|improve this answer
Date today = new Date();
Date tomorrow = new Date(today.getTime() + (1000 * 60 * 60 * 24));

Date has a constructor using the milliseconds since the UNIX-epoch. the getTime()-method gives you that value. So adding the milliseconds for a day, does the trick. If you want to do such manipulations regularly I recommend to define constants for the values.

Important hint: That is not correct in all cases. Read the comments.

share|improve this answer
1  
WARNING! Adding 1000*60*60*24 milliseconds to a java date will once in a great while add zero days or two days to the original date in the circumstances of leap seconds, daylight savings time and the like. If you need to be 100% certain only one day is added, this solution is not the one to use. – Eric Leschinski Mar 13 at 22:39
You are right. I add the hint to this comment to my answer. – Mnementh Mar 14 at 10:51

This will increase any date by exactly one

String untildate="2011-10-08";//can take any date in current format    
SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd" );   
Calendar cal = Calendar.getInstance();    
cal.setTime( dateFormat.parse(untildate));    
cal.add( Calendar.DATE, 1 );    
String convertedDate=dateFormat.format(cal.getTime());    
System.out.println("Date increase by one.."+convertedDate);
share|improve this answer

To make it a touch less java specific, the basic principle would be to convert to some linear date format, julian days, modified julian days, seconds since some epoch, etc, add your day, and convert back.

The reason for doing this is that you farm out the "get the leap day, leap second, etc right' problem to someone who has, with some luck, not mucked this problem up.

I will caution you that getting these conversion routines right can be difficult. There are an amazing number of different ways that people mess up time, the most recent high profile example was MS's Zune. Dont' poke too much fun at MS though, it's easy to mess up. It doesn't help that there are multiple different time formats, say, TAI vs TT.

share|improve this answer

use DateTime object obj.Add to add what ever you want day hour and etc. Hope this works:)

share|improve this answer

I would be careful using

Date today = new Date();    
Date tomorrow = new Date(today.getTime() + (1000 * 60 * 60 * 24));

If you are using a Calendar Timezone with Daytime Savings, on the changing day from summer to wintertime it will not jump to the next day.

share|improve this answer

I prefer joda for date and time arithmetics because it is much better readable:

Date tomorrow = now().plusDays(1).toDate();

Or

endOfDay(now().plus(days(1))).toDate()
startOfDay(now().plus(days(1))).toDate()
share|improve this answer

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.