这里介绍两种方法:
package Book.jj.hh;
import java.text.DecimalFormat;
//使用DecimalFormat类
public class Demo1 {
public static void main(String[] args) {
double num = 123.52631;
DecimalFormat a = new DecimalFormat("#.00"); //小数点后有几个0就保留几位小数,这里以保留小数点后两位为例
System.out.println(a.format(num));
}
}
**************************************************************************************************************
package Book.jj.hh;
//使用String.format方法
public class Demo2 {
public static void main(String[] args) {
double num = 123.52631;
String a = String.format("%.2f",num); //这里2表示保留两位小数,保留几位小数就是几
System.out.println(a);
}
}