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

