Here you can find the source of getEngMonth()
public static String getEngMonth()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.GregorianCalendar; import java.util.Locale; public class Main { public static String getEngMonth() { GregorianCalendar calendar = new GregorianCalendar(); SimpleDateFormat monthForm = new SimpleDateFormat("MMMMM", Locale.ENGLISH); return monthForm.format(calendar.getTime()); }/*from w w w .ja v a2s .co m*/ }