Here you can find the source of getLastMonthOfYear()
public static int getLastMonthOfYear()
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int getLastMonthOfYear() { Calendar cal = Calendar.getInstance(); cal.add(Calendar.MONTH, 0); int lastmonth = cal.get(Calendar.MONTH); return lastmonth; }//from ww w. j a va2 s . c om }