I wish to get the names of months, like "January", "October", etc.In the Calendar API, these are all int.Is there an array that contains strings of months names?Thanks!
If you need to display a formatted date then use SimpleDateFormat.If you use "MMMM" for the month it will display December.Using "MMM" will display Dec.