我有一个ISO 4217数字货币代码:840
我想获取货币名称:USD
我正在尝试这样做:
Currency curr1 = Currency.getInstance("840");
但我一直在
java.lang.IllegalArgumentException异常
如何修复?任何想法?
答案 0 :(得分:7)
java.util.Currency.getInstance
仅支持ISO 4217货币代码,而不支持货币编号。但是,您可以使用getAvailableCurrencies
方法检索所有货币,然后通过比较getNumericCode
方法的结果来搜索代码为840的货币。
像这样:
public static Currency getCurrencyInstance(int numericCode) {
Set<Currency> currencies = Currency.getAvailableCurrencies();
for (Currency currency : currencies) {
if (currency.getNumericCode() == numericCode) {
return currency;
}
}
throw new IllegalArgumentException("Currency with numeric code " + numericCode + " not found");
}
答案 1 :(得分:0)
你必须提供类似&#34; USD&#34;的代码。然后它将返回Currency对象。如果您使用的是JDK 7,则可以使用以下代码。 JDk 7有一个方法getAvailableCurrencies()
public static Currency getCurrencyByCode(int code) {
for(Currency currency : Currency.getAvailableCurrencies()) {
if(currency.getNumericCode() == code) {
return currency;
}
}
throw new IllegalArgumentException("Unkown currency code: " + code);
}
答案 2 :(得分:0)
一种更好的方法:
public class CurrencyHelper {
private static Map<Integer, Map> currencies = new HashMap<>();
static {
Set<Currency> set = Currency.getAvailableCurrencies();
for (Currency currency : set) {
currencies.put(currency.getNumericCode(), currency);
}
}
public static Currency getInstance(Integer code) {
return currencies.get(code);
}
}
只需少量工作,就可以提高缓存的效率。请查看源代码Currency类以获取更多信息。
答案 3 :(得分:0)
使用Java 8:
可选cur = Currency.getAvailableCurrencies()。stream()。filter(c-> c.getNumericCode()== 840).findAny();