Java Month Get getEngMonth()

Here you can find the source of getEngMonth()

Description

get Eng Month

License

Open Source License

Declaration

public static String getEngMonth() 

Method Source Code

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

Related

  1. getBeforeMonth(int amount)
  2. getBeforeOrAfterDate(String strDate, int months)
  3. getCurMonth2Long()
  4. getCurrMonthLastDay()
  5. getEndDateOfMonth(String yyyymmdd)
  6. getIntervalMonths(String startDate, String endDate)
  7. getIntevalMonth(String strDate1, String strDate2)
  8. getMonth()
  9. getMonth()