Here you can find the source of getMonth(int month, Locale locale)
@TargetApi(9) public static String getMonth(int month, Locale locale)
//package com.java2s; import android.annotation.TargetApi; import java.text.DateFormatSymbols; import java.util.Locale; public class Main { @TargetApi(9) public static String getMonth(int month, Locale locale) { return DateFormatSymbols.getInstance(locale).getMonths()[month - 1]; }/*w ww.j av a 2s. c om*/ }