Here you can find the source of getMonth(Calendar calendar)
static public int getMonth(Calendar calendar)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { static public int getMonth(Calendar calendar) { return calendar.get(Calendar.MONTH); }//from w ww. j av a 2 s. c o m }