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.
11 回答
现在,在 Apache 许可证版本 2.0 下,GitHub 上提供了作为 Java 枚举的国家代码(ISO 3166-1 alpha-2 / alpha-3 / numeric )列表的实现。
例子:
CountryCode cc = CountryCode.getByCode("JP");
System.out.println("Country name = " + cc.getName()); // "Japan"
System.out.println("ISO 3166-1 alpha-2 code = " + cc.getAlpha2()); // "JP"
System.out.println("ISO 3166-1 alpha-3 code = " + cc.getAlpha3()); // "JPN"
System.out.println("ISO 3166-1 numeric code = " + cc.getNumeric()); // 392
最后编辑2016 年 6 月 9 日
CountryCode 枚举与其他 Java 枚举、LanguageCode ( ISO 639-1 )、LanguageAlpha3Code ( ISO 639-2 )、LocaleCode、ScriptCode ( ISO 15924 ) 和 CurrencyCode ( ISO 4217 ) 一起打包到 com.neovisionaries.i18n 中并注册到 Maven Central存储库。
马文
<dependency>
<groupId>com.neovisionaries</groupId>
<artifactId>nv-i18n</artifactId>
<version>1.29</version>
</dependency>
摇篮
dependencies {
compile 'com.neovisionaries:nv-i18n:1.29'
}
GitHub
https://github.com/TakahikoKawasaki/nv-i18n
Javadoc
https://takahikokawasaki.github.io/nv-i18n/
操作系统
Bundle-SymbolicName: com.neovisionaries.i18n
Export-Package: com.neovisionaries.i18n;version="1.28.0"
以下是我如何使用国家代码 + 国家名称生成枚举:
package countryenum;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
public class CountryEnumGenerator {
public static void main(String[] args) {
String[] countryCodes = Locale.getISOCountries();
List<Country> list = new ArrayList<Country>(countryCodes.length);
for (String cc : countryCodes) {
list.add(new Country(cc.toUpperCase(), new Locale("", cc).getDisplayCountry()));
}
Collections.sort(list);
for (Country c : list) {
System.out.println("/**" + c.getName() + "*/");
System.out.println(c.getCode() + "(\"" + c.getName() + "\"),");
}
}
}
class Country implements Comparable<Country> {
private String code;
private String name;
public Country(String code, String name) {
super();
this.code = code;
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public int compareTo(Country o) {
return this.name.compareTo(o.name);
}
}
如果您已经打算依赖 Java 语言环境,那么我建议使用简单的 HashMap 而不是为国家等创建新类。
如果我只依赖 Java 本地化,以下是我将如何使用它:
private HashMap<String, String> countries = new HashMap<String, String>();
String[] countryCodes = Locale.getISOCountries();
for (String cc : countryCodes) {
// country name , country code map
countries.put(new Locale("", cc).getDisplayCountry(), cc.toUpperCase());
}
填写地图后,您可以在需要时从国家名称中获取 ISO 代码。或者您也可以将其设为国家名称映射的 ISO 代码,只需相应地修改“put”方法。
有一种简单的方法可以使用语言名称生成此枚举。执行此代码以生成要粘贴的枚举字段列表:
/**
* This is the code used to generate the enum content
*/
public static void main(String[] args) {
String[] codes = java.util.Locale.getISOLanguages();
for (String isoCode: codes) {
Locale locale = new Locale(isoCode);
System.out.println(isoCode.toUpperCase() + "(\"" + locale.getDisplayLanguage(locale) + "\"),");
}
}
如果有人已经在使用 Amazon AWS 开发工具包,它包括com.amazonaws.services.route53domains.model.CountryCode
. 我知道这并不理想,但如果您已经使用 AWS 开发工具包,它是一种替代方案。在大多数情况下,我会使用 Takahiko 的nv-i18n
,因为正如他所提到的,它实现了 ISO 3166-1。
不是 java 枚举,而是它的 JSON 版本可在http://country.io/names.json 获得
AWS Java SDK 有CountryCode。
这仍然没有回答这个问题。我也在为此寻找一种枚举器,但没有找到任何东西。这里有一些使用 hashtable 的例子,但表示与内置 get 相同
我会采用不同的方法。所以我在python中创建了一个脚本来自动生成Java中的列表:
#!/usr/bin/python
f = open("data.txt", 'r')
data = []
cc = {}
for l in f:
t = l.split('\t')
cc = { 'code': str(t[0]).strip(),
'name': str(t[1]).strip()
}
data.append(cc)
f.close()
for c in data:
print """
/**
* Defines the <a href="http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO_3166-1_alpha-2</a>
* for <b><i>%(name)s</i></b>.
* <p>
* This constant holds the value of <b>{@value}</b>.
*
* @since 1.0
*
*/
public static final String %(code)s = \"%(code)s\";""" % c
其中 data.txt 文件是 Wikipedia 表中的简单复制和粘贴(只需删除所有多余的行,确保每行都有国家代码和国家名称)。
然后把它放到你的静态类中:
/**
* Holds <a href="http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO_3166-1_alpha-2</a>
* constant values for all countries.
*
* @since 1.0
*
* </p>
*/
public class CountryCode {
/**
* Constructor defined as <code>private</code> purposefully to ensure this
* class is only used to access its static properties and/or methods.
*/
private CountryCode() { }
/**
* Defines the <a href="http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO_3166-1_alpha-2</a>
* for <b><i>Andorra</i></b>.
* <p>
* This constant holds the value of <b>{@value}</b>.
*
* @since 1.0
*
*/
public static final String AD = "AD";
//
// and the list goes on! ...
//
}
直到我最近才为此目的开源了我的 Java 枚举,我才知道这个问题!惊人的巧合!
我使用 BSD caluse 3 许可证将整个源代码放在我的博客上,所以我认为没有人会对此有任何不满。
可以在这里找到。 https://subversivebytes.wordpress.com/2013/10/07/java-iso-3166-java-enum/
希望它有用并减轻开发痛苦。
我创建了一个枚举,你用英文国家名称来寻址。请参阅国家实用程序。
在每个枚举上,您都可以调用getLocale()
以获取 Java 语言环境。
您可以从 Locale 获取您习惯使用的所有信息,即 ISO-3166-1 两个字母的国家/地区代码。
public enum Country{
ANDORRA(new Locale("AD")),
AFGHANISTAN(new Locale("AF")),
ANTIGUA_AND_BARBUDA(new Locale("AG")),
ANGUILLA(new Locale("AI")),
//etc
ZAMBIA(new Locale("ZM")),
ZIMBABWE(new Locale("ZW"));
private Locale locale;
private Country(Locale locale){
this.locale = locale;
}
public Locale getLocale(){
return locale;
}
临:
- 轻的
- 映射到 Java 语言环境
- 可按国家全名寻址
- 枚举值不是硬编码的,而是通过调用 Locale.getISOCountries() 生成的。也就是说:只需针对最新的 java 版本重新编译项目,即可对枚举中反映的国家/地区列表进行任何更改。
缺点:
- 不在 Maven 存储库中
- 很可能比我不知道的其他解决方案更简单/更具表现力。
- 为我自己的需要而创建 / 不是这样维护的。- 您可能应该克隆 repo。