Here you can find the source of getMonth(Date date)
public static int getMonth(Date date)
//package com.java2s; import java.util.*; public class Main { public static Calendar calendar = new GregorianCalendar(); public static int getMonth(Date date) { calendar.setTime(date);// w w w .j a va 2 s . co m return calendar.get(Calendar.MONTH); } }