DecimalFormat类是java.text包中的一个类,用于格式化数字。
用法如下:
导入DecimalFormat类:
import java.text.DecimalFormat;
创建DecimalFormat对象:
DecimalFormat df = new DecimalFormat();
可以通过构造函数传入格式化模式,例如:
DecimalFormat df = new DecimalFormat("0.00");
设置格式化模式:
df.applyPattern("0.00");
格式化数字:
double number = 1234.5678;
String formattedNumber = df.format(number);
System.out.println(formattedNumber);
输出结果为:
1234.57
可以使用format方法将数字格式化为指定模式的字符串。
更多关于DecimalFormat的用法,请参考官方文档:DecimalFormat类文档