如何从双精度型中删除尾随零 2022-02-27 00:00:00 zero double trailing java 例如,我需要5.0成为5,或4.3000成为4.3。 解决方案使用DecimalFormat double answer = 5.0; DecimalFormat df = new DecimalFormat("###.#"); System.out.println(df.format(answer)); 相关文章