如何通过国家代码获取货币名称?
我想通过国家代码获取货币名称。我使用以下代码获取国家/地区代码:
TelephonyManager manager = (TelephonyManager)getSystemService(TELEPHONY_SERVICE);
String countrycode=manager.getNetworkCountryIso();
System.out.println("---->"+countrycode+"<----");
现在我想通过使用此国家/地区代码获取货币。我该怎么做?
I want to get the currency name by country code. I get the country code with the following code:
TelephonyManager manager = (TelephonyManager)getSystemService(TELEPHONY_SERVICE);
String countrycode=manager.getNetworkCountryIso();
System.out.println("---->"+countrycode+"<----");
Now I want to get currency by using this country code. How can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用此实用程序获取货币并从国家/地区代码加载。
http://developer.android.com/reference/java/util/Currency.html
You can get the currency by using this util and load from country code.
http://developer.android.com/reference/java/util/Currency.html
我使用了 Currency 类和默认的 < a href="http://developer.android.com/intl/es/reference/java/util/Locale.html" rel="nofollow">Locale 获取当前货币代码(ISO 4217)以下代码:
您还可以将区域设置替换为您的自定义国家/地区代码;)
I've used the Currency class and the default Locale to get the current currency code (ISO 4217) with the following code:
You can also replace the Locale with your custom Country Code ;)