集册 Java实例教程 使用通用数字格式对数字进行格式设置,精确到小数点后三位:

使用通用数字格式对数字进行格式设置,精确到小数点后三位:

欢马劈雪     最近更新时间:2020-01-02 10:19:05

585
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用通用数字格式对数字进行格式设置,精确到小数点后三位:

import java.text.NumberFormat;


public class Main {

  public static void main(String[] args) {/* 来 自 N o w  J a v a  .   c o m*/

    double x = 12345.6789;

    NumberFormat nf = NumberFormat.getNumberInstance();

    nf.setMinimumFractionDigits(3);

    nf.setMaximumFractionDigits(3);

    System.out.println(nf.format(x));


  }


}