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));
}
}
輸出:
??, ???.???
相關用法
- Java DecimalFormat applyPattern()用法及代碼示例
- Java DecimalFormat getDecimalFormatSymbols()用法及代碼示例
- Java DecimalFormat getGroupingSize()用法及代碼示例
- Java DecimalFormat setMultiplier()用法及代碼示例
- Java DecimalFormat setRoundingMode()用法及代碼示例
- Java DecimalFormat getCurrency()用法及代碼示例
- Java DecimalFormat clone()用法及代碼示例
- Java DecimalFormat setMinimumIntegerDigits()用法及代碼示例
- Java DecimalFormat equals()用法及代碼示例
- Java DecimalFormat setMinimumFractionDigits()用法及代碼示例
- Java DecimalFormat getMaximumFractionDigits()用法及代碼示例
- Java DecimalFormat getMaximumIntegerDigits()用法及代碼示例
- Java DecimalFormat getMinimumIntegerDigits()用法及代碼示例
- Java DecimalFormat getMultiplier()用法及代碼示例
- Java DecimalFormat getRoundingMode()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 DecimalFormat setDecimalFormatSymbols() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。