| Author |
Incrementing the date
|
Jamie Cotton
Greenhorn
Joined: Nov 12, 2004
Posts: 16
|
|
Hiya all I have But how do I get date2 to be date increment by 2 days. So if date is 07/04/2005 date 2 should be 09/04/2005
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
|
Use a Calendar and look at the roll() and add() methods.
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Mark Mescher
Ranch Hand
Joined: Oct 25, 2004
Posts: 34
|
|
Use GregorianCalendar. Never add millis directly to generate the new date because you will get problems with winter/summer times and so on. Bye Mark
|
 |
A Kumar
Ranch Hand
Joined: Jul 04, 2004
Posts: 973
|
|
Hi, I had posted same kind of Q few days back.. have a look .. http://www.coderanch.com/t/376264/java/java/Tommorows-date
|
 |
 |
|
|
subject: Incrementing the date
|
|
|