Convert java.util.Date to java.sql.Date after calculation


import java.util.GregorianCalendar;

public class Main {
  /**
   * Roll the java.sql.Date forward or backward.
   * @param startDate - The start date
   * @period Calendar.YEAR etc
   * @param amount - Negative to roll backwards.
   */
   public static java.sql.Date rollDate( java.util.Date startDate, int period, int amount )
   {
       GregorianCalendar gc = new GregorianCalendar();
       gc.setTime(startDate);
       gc.add(period, amount);
       return new java.sql.Date(gc.getTime().getTime());
   }
}
Home 
  Java Book 
    Runnable examples  

Date Convert:
  1. Convert Calendar to java.sql.Date
  2. Convert day of year to day of month
  3. Convert java.util.Date to java.sql.Time after calculation
  4. Convert java.util.Date to java.sql.Date after calculation
  5. Convert java.util.Date to java.sql.Date
  6. Convert Date into milliseconds
  7. Convert date to GMT
  8. Convert day of the year to date
  9. Convert milliseconds to readable string
  10. Elapsed time in hours/minutes/seconds
  11. Convert longs (time_t in UNIX terminology) to seconds