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
方案二:
// 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: Java Java.text.DecimalFormatSymbols)