Java NumberFormat setCurrency()方法及示例
setCurrency() 方法是java.text.NumberFormat的一个内置方法,用于设置该数字格式在格式化货币值时使用的货币。这并不更新数字格式所使用的最小或最大分数位数。它将覆盖最初的货币。
语法
public void setCurrency(Currency currency)
参数 :该函数接受一个强制性参数 currency ,它指定了要设置的货币。
返回值 :该函数不返回任何东西,因此它的返回类型是void。
错误和异常: 该函数抛出两种类型的异常,可以描述如下。
- UnsupportedOperationException : 如果数字格式类没有实现货币格式化,就会抛出这种异常。
- NullPointerException :如果货币为空,则抛出该异常。
下面是上述函数的实现。
程序1 :
// 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
{
NumberFormat nF
= NumberFormat.getNumberInstance();
// Initially currency
System.out.println("Initially Currency: "
+ nF.getCurrency());
// Currency set to US
nF.setCurrency(Currency
.getInstance(Locale.CANADA));
// Print the currency
System.out.println("Currency set as: "
+ nF.getCurrency());
}
}
输出。
Initially Currency: USD
Currency set as: CAD
程序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
{
try {
NumberFormat nF
= NumberFormat.getNumberInstance();
// Initially currency
System.out.println("Initially Currency: "
+ nF.getCurrency());
// Currency set to US
nF.setCurrency(null);
// Print the currency
System.out.println("Currency set as: "
+ nF.getCurrency());
}
catch (Exception e) {
System.out.println("Exception is: " + e);
}
}
}
输出。
Initially Currency: USD
Exception is: java.lang.NullPointerException
参考资料 : https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#setCurrency(java.util.Currency)