Here you can find the source of afterNDays(Calendar c, int n)
public static Calendar afterNDays(Calendar c, int n)
//package com.java2s; import java.util.Calendar; public class Main { public static Calendar afterNDays(Calendar c, int n) { long offset = n * 24 * 60 * 60 * 1000; Calendar calendar = null; if (c != null) { calendar = c;/* w w w . j a va 2 s. c o m*/ } else { calendar = Calendar.getInstance(); } calendar.setTimeInMillis(calendar.getTimeInMillis() + offset); return calendar; } }