DecimalFormat是Java中的一個(gè)類,用于格式化數(shù)字的輸出。它提供了一種靈活的方法來定義數(shù)字的樣式和格式。
DecimalFormat的使用方法包括:
DecimalFormat df = new DecimalFormat(); // 創(chuàng)建默認(rèn)格式的DecimalFormat對(duì)象
DecimalFormat df = new DecimalFormat("#,##0.00"); // 創(chuàng)建自定義格式的DecimalFormat對(duì)象
double number = 1234.56;
String formattedNumber = df.format(number);
System.out.println(formattedNumber); // 輸出1,234.56
String formattedNumber = "1,234.56";
double number = df.parse(formattedNumber).doubleValue();
System.out.println(number); // 輸出1234.56
df.applyPattern("#,##0.##"); // 設(shè)置格式模式為千分位表示,保留兩位小數(shù)
df.setMaximumIntegerDigits(5); // 設(shè)置整數(shù)部分最多5位
df.setMinimumFractionDigits(2); // 設(shè)置小數(shù)部分至少2位
df.setGroupingSeparator(','); // 設(shè)置分組分隔符為逗號(hào)
df.setDecimalSeparator('.'); // 設(shè)置小數(shù)點(diǎn)符號(hào)為點(diǎn)
df.setDecimalSeparatorAlwaysShown(true); // 始終顯示小數(shù)點(diǎn)符號(hào)
df.setPositivePrefix("+"); // 正數(shù)前綴為+
df.setNegativePrefix("-"); // 負(fù)數(shù)前綴為-
df.setNegativeSuffix("元"); // 負(fù)數(shù)后綴為元
以上是DecimalFormat的一些常用使用方法,可以根據(jù)實(shí)際需求選擇適合的方法來格式化數(shù)字的輸出。