博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 小数点取2位并且四舍五入
阅读量:6268 次
发布时间:2019-06-22

本文共 598 字,大约阅读时间需要 1 分钟。

BigDecimal bd = new BigDecimal(0.0199999999999);  System.out.println("res:"+bd.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue());

 

 

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)));

 

转载地址:http://cydpa.baihongyu.com/

你可能感兴趣的文章
CSS伪类使用
查看>>
哈佛成功金句
查看>>
iview Table表格单选框互斥
查看>>
leetcode278
查看>>
CodeForces-771D-Bear and Company
查看>>
PAT 1032 Sharing
查看>>
Extjs设置或获取cookie
查看>>
CC2541蓝牙BLE4.0主从透传工程
查看>>
iOS OC中block使用
查看>>
python之路--操作系统介绍,进程的创建
查看>>
markdown语法小结
查看>>
Java Gui 设计模式中的事件监听
查看>>
JavaSE-final关键字
查看>>
python自动化开发-1
查看>>
Remote远程特性的使用
查看>>
orm在django中的简单使用
查看>>
poj 2373 Dividing the Path
查看>>
dplyr 数据操作 常用函数(4)
查看>>
A股实时股票行情,指数行情web API 使用方法
查看>>
大整数算法[04] 位操作
查看>>