The code below can be used to get the name of current month, for example, January, February, March etc. Just call this method and it will return the name of current month
public String getCurrentMonthName(){
String[] monthName = {"January", "February",
"March", "April", "May", "June", "July",
"August", "September", "October", "November",
"December"};
Calendar cal = Calendar.getInstance();
return monthName[cal.get(Calendar.MONTH)];
}