Here you can find the source of getYesterMonthDate(String format)
public static String getYesterMonthDate(String format)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String getYesterMonthDate(String format) { Calendar day = Calendar.getInstance(); day.add(Calendar.MONTH, -1); SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.format(day.getTime()); }// w w w . j a v a 2s .com }