Here you can find the source of add(Date date, int field, int value)
private static Date add(Date date, int field, int value)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { private static Date add(Date date, int field, int value) { Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(date.getTime()); cal.add(field, value);//from w w w .j a va 2 s . c om return cal.getTime(); } }