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


Java DecimalFormatSymbols setCurrency()用法及代码示例


Java中的java.text.DecimalFormatSymbols类的setCurrency(Currency)方法用于设置此DecimalFormatSymbols的语言环境的货币。此方法将货币作为参数并进行设置。

用法:

public void setCurrency(Currency currency)

参数:此方法接受货币作为参数,这是将用来表示此DecimalFormatSymbols货币的货币。


返回值:此方法不设置任何内容。

异常:如果货币为null,则此方法引发NullPointerException。

程序:

// Java program to demonstrate 
// the above method 
  
import java.text.*; 
import java.util.*; 
  
public class DecimalFormatSymbolsDemo { 
    public static void main(String[] args) 
    { 
  
        DecimalFormatSymbols dfs 
            = new DecimalFormatSymbols(); 
  
        System.out.println("Current currency: "
                           + dfs.getCurrency()); 
  
        Currency currency 
            = Currency.getInstance("INR"); 
  
        dfs.setCurrency(currency); 
  
        System.out.println("Updated currency: "
                           + dfs.getCurrency()); 
    } 
}
输出:
Current currency: USD
Updated currency: INR

参考: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#setCurrency-java.util.Currency-



相关用法


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