Here you can find the source of getLastYear(Calendar cal)
public static String getLastYear(Calendar cal)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static String getLastYear(Calendar cal) { // int curYear; cal.add(Calendar.YEAR, -1); return "" + cal.get(Calendar.YEAR); }// w ww. j a v a2s .com }