保留两位小数
Posted 海蜃天波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了保留两位小数相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) { String str="86.64466666"; BigDecimal bd = new BigDecimal(Double.parseDouble(str)); System.out.println(bd.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue()); System.out.println("================="); DecimalFormat df = new DecimalFormat("#.00"); System.out.println(df.format(Double.parseDouble(str))); System.out.println("================="); System.out.println(String.format("%.2f", Double.parseDouble(str))); System.out.println("================="); NumberFormat nf = NumberFormat.getNumberInstance(); nf.setMaximumFractionDigits(2); System.out.println(nf.format(Double.parseDouble(str))); }
基本数据类型转String的时候可以通过包装类进行自动拆箱
以上是关于保留两位小数的主要内容,如果未能解决你的问题,请参考以下文章