Does anyone know of a freely available java 1.5 package that provides a list of ISO 3166-1 country codes as a enum or EnumMap? Specifically I need the "ISO 3166-1-alpha-2 code elements", i.e. the 2 character country code like "us", "uk", "de", etc. Creating one is simple enough (although tedious), but if there's a standard one already out there in apache land or the like it would save a little time.
feedback
|
|
This code gets 242 countries in Sun Java 6:
Though the ISO website claims there are 249 ISO 3166-1-alpha-2 code elements, though the javadoc links to the same information. | |||||||||
feedback
|
|
Here's how I generated an enum with country code + country name:
| ||||
|
feedback
|
|
There is an easy way to generate this enum with the language name. Execute this code to generate the list of enum fields to paste :
| |||
|
feedback
|
|
This still does not answer the question. I was also looking for a kind of enumerator for this, and did not find anything. Some examples using hashtable here, but represent the same as the built-in get I would go for a different approach. So I created a script in python to automatically generate the list in Java:
where the data.txt file is a simple copy&paste from Wikipedia table (just remove all extra lines, making sure you have a country code and country name per line). Then just place this into your static class:
| |||
|
feedback
|