Add minute to a date returning a new object


import java.util.Calendar;
import java.util.Date;
public class Main {
  public static Date addMinutes(Date date, int amount) {
      return add(date, Calendar.MINUTE, amount);
  }
  private static Date add(Date date, int calendarField, int amount) {
      if (date == null) {
          throw new IllegalArgumentException("The date must not be null");
      }
      Calendar c = Calendar.getInstance();
      c.setTime(date);
      c.add(calendarField, amount);
      return c.getTime();
  }
}
Home 
  Java Book 
    Runnable examples  

Date Add Time:
  1. Add amount to a date returning a new object
  2. Add hour to a date returning a new object
  3. Add millisecond to a date returning a new object
  4. Add minute to a date returning a new object
  5. Add month to a date returning a new object
  6. Add negative value to a calendar
  7. Add second to a date returning a new object
  8. Add week to a date returning a new object
  9. Add year to a date returning a new object
  10. Subtract days from current date using Calendar.add method
  11. Subtract hours from current date using Calendar.add method
  12. Subtract minutes from current date using Calendar.add method
  13. Subtract months from current date using Calendar.add method
  14. Subtract seconds from current time using Calendar.add method
  15. Subtract week from current date
  16. Subtract 1 year from the calendar
  17. Subtract year from current date