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

I am getting date in the format as yyyy-mm-dd. I need to increment this by one day. How can I do this?

share|improve this question

12 Answers

Something like this should do the trick:

String dt = "2008-01-01";  // Start date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
c.setTime(sdf.parse(dt));
c.add(Calendar.DATE, 1);  // number of days to add
dt = sdf.format(c.getTime());  // dt is now the new date
share|improve this answer
2  
c.roll(Calendar.DATE, true); would be somewhat better for clarity. – Esko Jan 9 '09 at 19:25
21  
@Esko, c.roll(Calendar.DATE, true) won't roll the month on the last day of the month. – Sam Hasler Jul 31 '09 at 22:38
1  
simple, clear, ready. i just copy it in Netbeans !!! – Ammar Bozorgvar Oct 16 '11 at 7:52
12  
@Ammar that's a bad idea if you didn't understood a thing – simon Dec 20 '11 at 6:02
2  
I'll quote some JavaDocs... Calendar.DATE: "...This is a synonym for DAY_OF_MONTH." I wish the JavaDocs would clarify that this would increment larger fields (like the month and year). Calendar.roll "Adds or subtracts (up/down) a single unit of time on the given time field without changing larger fields" .. Again, "larger fields" is vague but that seems consistent with Sam's comment. I wish there were a StackOverflow for fixing old the JavaDocs. – jcalfee314 Aug 30 '12 at 12:06
show 3 more comments

Java does appear to be well behind the eight-ball compared to C#. This utility method shows the way to do in Java SE 6 using the Calendar.add method (presumably the only easy way).

public class DateUtil
{
    public static Date addDays(Date date, int days)
    {
        Calendar cal = Calendar.getInstance();
        cal.setTime(date);
        cal.add(Calendar.DATE, days); //minus number would decrement the days
        return cal.getTime();
    }
}

To add one day, per the question asked, call it as follows:

String sourceDate = "2012-02-29";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date myDate = format.parse(sourceDate);
myDate = DateUtil.addDays(myDate, 1);
share|improve this answer

Take a look at Joda-Time (http://joda-time.sourceforge.net/).

DateTimeFormatter parser = ISODateTimeFormat.date();

DateTime date = parser.parseDateTime(dateString);

String nextDay = parser.print(date.plusDays(1));
share|improve this answer
2  
You can remove the parser calls for constructing the DateTime. Use DateTime date = new DateTime(dateString); Then, nextDay is ISODateTimeFormat.date().print(date.plusDays(1)); See joda-time.sourceforge.net/api-release/org/joda/time/… for more info. – MetroidFan2002 Jan 10 '09 at 6:33
SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd" );
Calendar cal = Calendar.getInstance();
cal.setTime( dateFormat.parse( inputString ) );
cal.add( Calendar.DATE, 1 );
share|improve this answer
Downvoted: This answer assumes Calendar is a GregorianCalendar, which ignores the current Locale. Use Calendar.getInstance() instead. – MetroidFan2002 Jan 10 '09 at 6:29

Please note that this line adds 24 hours:

d1.getTime() + 1 * 24 * 60 * 60 * 1000

but this line adds one day

cal.add( Calendar.DATE, 1 );

On days with a daylight savings time change (25 or 23 hours) you will get different results!

share|improve this answer

Construct a Calendar object and use the method add(Calendar.DATE, 1);

share|improve this answer

I prefer to use DateUtils from Apache. Check this http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/time/DateUtils.html. It is handy especially when you have to use it multiple places in your project and would not want to write your one liner method for this.

The API says:

addDays(Date date, int amount) : Adds a number of days to a date returning a new object.

Note that it returns a new Date object and does not make changes to the previous one itself.

share|improve this answer

try this code:

Date d1 = new Date();

Date d2 = new Date();

d2.setTime(d1.getTime() + 1 * 24 * 60 * 60 * 1000);
share|improve this answer

Use the DateFormat API to convert the String into a Date object, then use the Calendar API to add one day. Let me know if you want specific code examples, and I can update my answer.

share|improve this answer

Apache Commons already has this DateUtils.addDays(Date date, int amount) http://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/time/DateUtils.html#addDays%28java.util.Date,%20int%29 which you use or you could go with the JodaTime to make it more cleaner.

share|improve this answer
Date newDate = new Date();
newDate.setDate(newDate.getDate()+1);
System.out.println(newDate);
share|improve this answer
6  
fyi, Date.setDate() is deprecated – Kelly S. French Aug 14 '12 at 17:09

Convert it to a date, add one day and convert it back to the string with the specific format.

share|improve this answer
How would add one day to a java.sql.Date object? The only way I can see is to add milliseconds but you running in to issues with day light savings this way. – Mark Robinson Jan 9 '09 at 17:48
See other answers. I prefer not to give "perfect code snippets" to homework style questions. – Mehrdad Afshari Jan 9 '09 at 18:14
Other answers use Calendar object, I ask b/c i've used the Date object in the past and ran into the day light saving problem. Just curious to see if there was another way to do it that i didn't think of. – Mark Robinson Jan 9 '09 at 18:29
Mark: I would have done it with the calendar object. Not sure if there is another good way. – Mehrdad Afshari Jan 9 '09 at 18:38
Ok thanks Mehrdad just wondering. – Mark Robinson Jan 9 '09 at 18:40

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.