📌  相关文章
📜  Java中的 DecimalFormat getCurrency() 方法

📅  最后修改于: 2022-05-13 01:54:57.997000             🧑  作者: Mango

Java中的 DecimalFormat getCurrency() 方法

getCurrency()方法是Java中Java .text.DecimalFomrat类的内置方法,用于返回在按该货币格式化货币值时使用的货币。如果没有要确定的有效货币或之前没有设置货币,则它可以为 null。

语法

public Currency getCurrency()

参数:该函数不接受单个参数。

返回值:该函数返回格式化货币值时使用的货币。

错误和异常:当数字格式类没有实现货币格式时,函数会抛出 UnsupportedOperationException

下面是上述函数的实现:

程序 1

// Java program to illustrate the
// getCurrency() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Get the Currency Instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Stores the values
        String values = deciFormat.getCurrency()
                            .getDisplayName();
  
        // Prints the currency
        System.out.println(values);
    }
}
输出:
US Dollar

方案二

// Java program to illustrate the
// getCurrency() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Get the Currency Instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Sets the currency to Canadian Dollar
        deciFormat.setCurrency(
            Currency.getInstance(
                Locale.CANADA));
  
        // Stores the values
        String values = deciFormat.getCurrency()
                            .getDisplayName();
  
        // Prints the currency
        System.out.println(values);
    }
}
输出:
Canadian Dollar

参考:https: Java/text/DecimalFormat.html#getCurrency()