如何通过国家代码获取货币名称?

发布于 2024-12-09 19:53:26 字数 301 浏览 0 评论 0原文

我想通过国家代码获取货币名称。我使用以下代码获取国家/地区代码:

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终遇你 2024-12-16 19:53:27

您可以使用此实用程序获取货币并从国家/地区代码加载。

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

怼怹恏 2024-12-16 19:53:27

我使用了 Currency 类和默认的 < a href="http://developer.android.com/intl/es/reference/java/util/Locale.html" rel="nofollow">Locale 获取当前货币代码(ISO 4217)以下代码:

Currency.getInstance(Locale.getDefault()).getCurrencyCode()

您还可以将区域设置替换为您的自定义国家/地区代码;)

I've used the Currency class and the default Locale to get the current currency code (ISO 4217) with the following code:

Currency.getInstance(Locale.getDefault()).getCurrencyCode()

You can also replace the Locale with your custom Country Code ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文