Here you can find the source of getLastMonth()
public static String getLastMonth()
//package com.java2s; /******************************************************************************* * @(#)TimeUtil.java 2010-2-1/* w w w. j a va 2s. c o m*/ * * Copyright 2010 Neusoft Group Ltd. All rights reserved. * Neusoft PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. *******************************************************************************/ import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { public static String getLastMonth() { final Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.DAY_OF_MONTH, -1); final Date date = calendar.getTime(); final SimpleDateFormat formatter = new SimpleDateFormat("yyyyMM"); return formatter.format((date)); } }