How do I get names of months?

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!
[203 byte] By [correroa] at [2007-10-2 8:17:11]
# 1
java.text.DateFormatSymbols
yawmarka at 2007-7-16 22:15:33 > top of Java-index,Java Essentials,New To Java...
# 2
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.
floundera at 2007-7-16 22:15:33 > top of Java-index,Java Essentials,New To Java...
# 3
JDK 5:new DateFormatSymbols().getMonths();
MortenHjerlHansena at 2007-7-16 22:15:33 > top of Java-index,Java Essentials,New To Java...