在Java中,可以使用DecimalFormat類來控制輸出的格式,以保留指定的小數位數。以下是一個簡單的示例代碼:
import java.text.DecimalFormat;
public class Main {
public static void main(String[] args) {
double num = 3.14159;
DecimalFormat df = new DecimalFormat("#.00");
String formattedNum = df.format(num);
System.out.println(formattedNum);
}
}
在上面的代碼中,我們使用DecimalFormat類創建了一個格式化對象df,然后使用format方法將要輸出的數字num格式化為包含兩位小數的字符串。最后,使用System.out.println方法輸出結果。輸出結果為:3.14。