Java Month Get getAktMonthName()

Here you can find the source of getAktMonthName()

Description

get Akt Month Name

License

Open Source License

Declaration

public static String getAktMonthName() 

Method Source Code

//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*/
}

Related

  1. currentMonth()
  2. currentMonthStr()
  3. getAllMonths(String date1, String date2)
  4. getBeforeMonth(int amount)
  5. getBeforeOrAfterDate(String strDate, int months)
  6. getCurMonth2Long()