Here you can find the source of getMonth()
public static int getMonth()
//package com.java2s; import java.util.Calendar; public class Main { public static int getMonth() { return Calendar.getInstance().get(Calendar.MONTH); }/*from w w w. ja va 2 s . c o m*/ }