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 int getMonth(Date date) { return getCalendar(date).get(Calendar.MONTH) + 1; }/*from w w w . jav a 2 s . co m*/ public static Calendar getCalendar(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); return calendar; } }