Get List of Months as Strings for a given local

I've been looking through the API and can't seem to find a method in Calendar or DateFormat or their subclasses to obtain a list of months. I know I could create a SimpleDateFormat using only the month name in it and then create a bunch of dates, one for each month and format those dates, but it seems to be overkill and that there must be a simpler (and faster) solution.

How would I ask the SimpleDateFormat (or any API class) for an Array, List, or similar for a list of the month names for a given locale?

Thanks,

Matt

[550 byte] By [mcpresa] at [2007-10-1 7:43:14]
# 1
Try new DateFormatSymbols(locale).getMonths();You can work this out from reading the source in src.zip.
Peter-Lawreya at 2007-7-9 20:22:20 > top of Java-index,Desktop,I18N...
# 2
Thanks, knew there had to be an easy way :)
mcpresa at 2007-7-9 20:22:20 > top of Java-index,Desktop,I18N...