当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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

程序2

// 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://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getCurrency()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat getCurrency() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。