I am getting date in the format as yyyy-mm-dd. I need to increment this by one day. How can I do this?
|
Something like this should do the trick:
|
|||||||||||||||||||||
|
|
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).
To add one day, per the question asked, call it as follows:
|
||||
|
|
|
Take a look at Joda-Time (http://joda-time.sourceforge.net/).
|
|||||
|
|
||||
|
|
Please note that this line adds 24 hours:
but this line adds one day
On days with a daylight savings time change (25 or 23 hours) you will get different results! |
|||
|
|
|
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:
Note that it returns a new Date object and does not make changes to the previous one itself. |
||||
|
|
|
try this code:
|
||||
|
|
|
Use the |
|||
|
|
|
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. |
|||
|
|
|
|||||
|
|
Convert it to a date, add one day and convert it back to the string with the specific format. |
|||||||||||
|