Posted By:
Firat_Tiryaki
Posted On:
Tuesday, September 5, 2006 04:52 AM
You can simply add one day to it, one day is 86400000 miliseconds, so check the below code
Date dd=new Date();
dd.setTime(dd.getTime()+86400000);
dd is one day later than the current time.