Here you can find the source of getDateCalculate(int d)
public static Date getDateCalculate(int d)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static Date getDateCalculate(int d) { Calendar calendar = Calendar.getInstance(); calendar.add(Calendar.DATE, d); return calendar.getTime(); }//from w ww .j ava 2s. com }