从国家代码 int 中获取国家名称字符串
Get country name String from country code int
我是 Java Android 的新人。
我想使用 Locale (Ref. ISO 3166-1 numeric)
中的国家代码获取国家名称(字符串)
试图做类似的事情(其中 [...].getCountry() return int 826):
Locale countryName = new Locale("", String.valueOf(profile.getPersonnalInformation().getAddress().getCountry()));
并使用此获取国家名称:countryName.getDisplayCountry()
它通常 return 我“英国”但不幸的是我有 826.
我该怎么做?
预先感谢您的帮助,
您必须获取国家代码字符串(2 或 3 个字母)才能使用它。 github 上有一个开源库可以为您完成。见 Is there an open source java enum of ISO 3166-1 country codes
或者只从 https://subversivebytes.wordpress.com/2013/10/07/java-iso-3166-java-enum/
中获取枚举
现在,在 Apache 许可版本 2.0 下,GitHub 提供了国家代码 (ISO 3166-1 alpha-2/alpha-3/numeric) 列表作为 Java 枚举的实现。
示例:
int c_code=profile.getPersonnalInformation().getAddress().getCountry());// 392
CountryCode cc = CountryCode.getByCode(c_code);
String country_name=cc.getName(); // "Japan"
Gradle
dependencies {
compile 'com.neovisionaries:nv-i18n:1.20'
}
Github
我是 Java Android 的新人。
我想使用 Locale (Ref. ISO 3166-1 numeric)
中的国家代码获取国家名称(字符串)试图做类似的事情(其中 [...].getCountry() return int 826):
Locale countryName = new Locale("", String.valueOf(profile.getPersonnalInformation().getAddress().getCountry()));
并使用此获取国家名称:countryName.getDisplayCountry()
它通常 return 我“英国”但不幸的是我有 826.
我该怎么做?
预先感谢您的帮助,
您必须获取国家代码字符串(2 或 3 个字母)才能使用它。 github 上有一个开源库可以为您完成。见 Is there an open source java enum of ISO 3166-1 country codes 或者只从 https://subversivebytes.wordpress.com/2013/10/07/java-iso-3166-java-enum/
中获取枚举现在,在 Apache 许可版本 2.0 下,GitHub 提供了国家代码 (ISO 3166-1 alpha-2/alpha-3/numeric) 列表作为 Java 枚举的实现。
示例:
int c_code=profile.getPersonnalInformation().getAddress().getCountry());// 392
CountryCode cc = CountryCode.getByCode(c_code);
String country_name=cc.getName(); // "Japan"
Gradle
dependencies {
compile 'com.neovisionaries:nv-i18n:1.20'
}
Github