getCurrency()方法是java.text.NumberFormat的内置方法,返回使用该货币格式化货币值时使用的货币。如果没有要确定的有效货币或以前没有设置货币,则可以为null。
用法:
public Currency getCurrency()
参数:该函数不接受单个参数。
返回值:该函数返回格式化货币值时使用的货币。
错误和异常:当数字格式类未实现货币格式设置时,该函数将引发UnsupportedOperationException
下面是上述函数的实现:
示例1:
// Java program to implement
// the above function
import java.text.NumberFormat;
import java.util.Locale;
public class Main {
public static void main(String[] args)
throws Exception
{
// Get the instance
NumberFormat nF
= NumberFormat
.getInstance();
// Stores the values
String values
= nF.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
输出:
US Dollar
示例2:
// Java program to implement
// the above function
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Currency;
public class Main {
public static void main(String[] args)
throws Exception
{
// Get the instance
NumberFormat nF
= NumberFormat
.getNumberInstance();
// Sets the currency to Canadian Dollar
nF.setCurrency(
Currency.getInstance(
Locale.CANADA));
// Stores the values
String values
= nF.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
输出:
Canadian Dollar
参考: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getCurrency()
相关用法
- Java DecimalFormatSymbols getCurrency()用法及代码示例
- Java NumberFormat getCurrencyInstance()用法及代码示例
- Java NumberFormat getIntegerInstance()用法及代码示例
- Java NumberFormat getInstance()用法及代码示例
- Java NumberFormat setMaximumIntegerDigits()用法及代码示例
- Java NumberFormat getMaximumFractionDigits()用法及代码示例
- Java NumberFormat getPercentInstance()用法及代码示例
- Java NumberFormat getNumberInstance()用法及代码示例
- Java NumberFormat getAvailableLocales()用法及代码示例
- Java NumberFormat setCurrency()用法及代码示例
- Java NumberFormat parse()用法及代码示例
- Java NumberFormat setParseIntegerOnly()用法及代码示例
- Java NumberFormat isParseIntegerOnly()用法及代码示例
- Java NumberFormat setMinimumFractionDigits()用法及代码示例
- Java NumberFormat hashCode()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 NumberFormat getCurrency() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。