Java DecimalFormat setDecimalFormatSymbols()方法
setDecimalFormatSymbols() 方法是Java中 java.text.DecimalFomrat 类的一个内置方法,用于为这个DecimalFormat实例设置新的DecimalFormatSymbols。这个DecimalFormatSymbols不能被程序员或用户改变。
语法:
public void setDecimalFormatSymbols(DecimalFormatSymbols newSymbols)
参数 :该函数接受一个参数newSymbols,它是DecimalFormatSymbols实例,用于为该实例设置新的十进制格式符号。
返回值 :该函数不返回任何值。
下面是上述函数的实现。
程序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)