Here you can find the source of getMonthName(Date date)
public static String getMonthName(Date date)
//package com.java2s; //License from project: Apache License import java.text.DateFormatSymbols; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getMonthName(Date date) { return new SimpleDateFormat("MMMM").format(date); }/* ww w.ja v a 2 s .co m*/ public static String getMonthName(int month) { return new DateFormatSymbols().getMonths()[month]; } }