Here you can find the source of getStringMonth(Date date)
public static String getStringMonth(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { public static String getStringMonth(Date date) { Calendar cal = Calendar.getInstance(); SimpleDateFormat month_date = new SimpleDateFormat("MMMM"); return month_date.format(cal.getTime()); }//from w w w. j a va 2 s . c om }