Here you can find the source of month(Calendar date)
public static int month(Calendar date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int month(Calendar date) { return date.get(Calendar.MONTH) + 1; }// w ww .j a v a 2 s.com }