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


Java DecimalFormat setDecimalFormatSymbols()用法及代码示例


setDecimalFormatSymbols()方法是Java中java.text.DecimalFomrat类的内置方法,用于为此DecimalFormat实例设置新的DecimalFormatSymbols。程序员或用户不能更改此DecimalFormatSymbols。

用法

public void setDecimalFormatSymbols(DecimalFormatSymbols newSymbols)

参数:该函数接受单个参数newSymbols,它是DecimalFormatSymbols实例,用于为该实例设置新的Decimal格式符号。


返回值:该函数不返回任何值。

下面是上述函数的实现:

程序1

// Java program to illustrate the 
// setDecimalFormatSymbols() method 
  
import java.text.DecimalFormat; 
import java.text.DecimalFormatSymbols; 
import java.util.Currency; 
import java.util.Locale; 
  
public class Main { 
    public static void main(String[] args) 
    { 
  
        // Create the DecimalFormat Instance 
        DecimalFormat deciFormat = new DecimalFormat(); 
  
        // Get the DecimalFormatSymbols Instance 
        DecimalFormatSymbols dfs = deciFormat.getDecimalFormatSymbols(); 
  
        // Set the DecimalFormatSymbols 
        deciFormat.setDecimalFormatSymbols(dfs); 
  
        System.out.println(deciFormat.format(12345.6789)); 
    } 
}
输出:
12, 345.679

程序2

// Java program to illustrate the 
// setDecimalFormatSymbols() method 
  
import java.text.DecimalFormat; 
import java.text.DecimalFormatSymbols; 
import java.util.Currency; 
import java.util.Locale; 
  
public class Main { 
    public static void main(String[] args) 
    { 
  
        // Create the DecimalFormat Instance 
        DecimalFormat deciFormat = new DecimalFormat(); 
  
        // Get the DecimalFormatSymbols Instance 
        DecimalFormatSymbols dfs = deciFormat.getDecimalFormatSymbols(); 
        dfs.setZeroDigit('\u0660'); 
  
        // Set the DecimalFormatSymbols 
        deciFormat.setDecimalFormatSymbols(dfs); 
  
        System.out.println(deciFormat.format(12345.6789)); 
    } 
}
输出:
??, ???.???

参考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setDecimalFormatSymbols(java.text.DecimalFormatSymbols)



相关用法


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