Here you can find the source of getMonth()
public static int getMonth()
//package com.java2s; import java.util.*; public class Main { public static int getMonth() { Calendar mycd = Calendar.getInstance(); return mycd.get(Calendar.MONTH) + 1; }/*from ww w.j ava2 s .com*/ }