Here you can find the source of yesterDay()
public static String yesterDay()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.GregorianCalendar; public class Main { public static String yesterDay() { Calendar calendar = new GregorianCalendar(); calendar.add(Calendar.DATE, -1); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd"); return simpleDateFormat.format(calendar.getTime()); }//from w ww. j ava 2 s . c o m }