java util date add 1 day code example
Example 1: java tomorrow date
Date dt = new Date();
DateTime dtOrg = new DateTime(dt);
DateTime dtPlusOne = dtOrg.plusDays(1);
Example 2: calendar java add 1 day
Calendar c = Calendar.getInstance(TimeZone.getDefault());
c.add( Calendar.DATE, 1 );
Example 3: add one day to current timestamp date in java
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Date;
public class AddTime {
public static void main( String[] args ) {
Timestamp timestamp = new Timestamp(new Date().getTime());
System.out.println(timestamp);
Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(timestamp.getTime());
cal.add(Calendar.SECOND, 30);
timestamp = new Timestamp(cal.getTime().getTime());
System.out.println(timestamp);
cal.setTimeInMillis(timestamp.getTime());
cal.add(Calendar.HOUR, 5);
timestamp = new Timestamp(cal.getTime().getTime());
System.out.println(timestamp);
cal.setTimeInMillis(timestamp.getTime());
cal.add(Calendar.DAY_OF_MONTH, 30);
timestamp = new Timestamp(cal.getTime().getTime());
System.out.println(timestamp);
cal.setTimeInMillis(timestamp.getTime());
cal.add(Calendar.MONTH, 6);
timestamp = new Timestamp(cal.getTime().getTime());
System.out.println(timestamp);
}
}