Java tutorial
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static int getMonth() { return getMonth(new Date()); } public static int getMonth(Date date) { Calendar c = Calendar.getInstance(); c.setTime(date); return c.get(Calendar.MONTH); } }