I get an integer and I need to convert to a month names in various locales:
Example for locale en-us: 1 -> January 2 -> February
Example for locale e
You need to use LLLL for stand-alone month names. this is documented in the SimpleDateFormat documentation, such as:
SimpleDateFormat
SimpleDateFormat dateFormat = new SimpleDateFormat( "LLLL", Locale.getDefault() ); dateFormat.format( date );