Here you can find the source of getYestMonth()
public static String getYestMonth()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static final String YYYY_MM = "yyyyMM"; /**//from w w w . j a v a2s. c om * /** * * @return */ public static String getYestMonth() { return new SimpleDateFormat(YYYY_MM).format(new Date()); } }