Here you can find the source of getLastMonthDate()
private static String getLastMonthDate()
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { private static String getLastMonthDate() { DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); Calendar c = Calendar.getInstance(); c.add(Calendar.MONTH, -1); return dateFormat.format(c.getTime()); }//from w w w . j a v a2 s. co m }