Here you can find the source of getAktMonthName()
public static String getAktMonthName()
//package com.java2s; import java.text.DateFormatSymbols; import java.util.Calendar; public class Main { public static final String[] MONTHS = new DateFormatSymbols().getMonths(); public static String getAktMonthName() { return MONTHS[Calendar.getInstance().get(Calendar.MONTH)]; }/*from w w w . j av a 2 s .c om*/ }