Here you can find the source of getDeltaNow(int deltaDays)
public static String getDeltaNow(int deltaDays)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static final String YYYYMMDDHHMMSS_FORMAT = "yyyy-MM-dd HH:mm:ss"; public static String getDeltaNow(int deltaDays) { Calendar c = Calendar.getInstance(); c.add(Calendar.DAY_OF_MONTH, deltaDays); return new SimpleDateFormat(YYYYMMDDHHMMSS_FORMAT).format(c.getTime()); }//from w w w . ja va 2 s . c o m }