java中怎么保留两位小数

java中保留两位小数的方法:1、使用DecimalFormat;2、使用String.format方法。

在Java中保留两位小数可以使用DecimalFormat类或者使用String.format方法。

1、使用DecimalFormat类的示例代码如下:

import java.text.DecimalFormat;
public class Main {
public static void main(String[] args) {
double number = 3.1415926;
DecimalFormat decimalFormat = new DecimalFormat("#.##");
String formattedNumber = decimalFormat.format(number);
System.out.println("Formatted number: " + formattedNumber);
}
}
输出结果为:Formatted number: 3.14

2、使用String.format方法的示例代码如下:

public class Main {
public static void main(String[] args) {
double number = 3.1415926;
String formattedNumber = String.format("%.2f", number);
System.out.println("Formatted number: " + formattedNumber);
}
}
输出结果为:Formatted number: 3.14

在上述示例代码中,首先定义了一个double类型的变量number,表示原始的数字。然后通过DecimalFormat类或者String.format方法对该数字进行格式化,使用"%.2f"表示保留两位小数。最后将格式化后的结果打印出来 。

推荐阅读