Here you can find the source of yesterday()
public static Calendar yesterday()
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static Calendar yesterday() { Calendar rtn = new GregorianCalendar(); rtn.add(Calendar.DATE, -1); return rtn; }/*from w ww .j a v a2 s .c o m*/ }