Here you can find the source of getDateMonthShift(int Shift)
public static Date getDateMonthShift(int Shift)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static Date gamedate = new Date(); public static Date getDateMonthShift(int Shift) { Calendar tempcalendar = GregorianCalendar.getInstance(); tempcalendar.setTime(gamedate);//from w ww . j a va2 s. com tempcalendar.add(Calendar.MONTH, Shift); return tempcalendar.getTime(); } }