您的位置:首页技术文章
文章详情页

Java POI读取excel中数值精度损失问题解决

【字号: 日期:2022-05-30 09:58:02浏览:20作者:猪猪

描述:

excel 单元格中,纯数字的单元格,读取后 后面会加上 .0 。

例如: 1 --> 1.0

而使用下面的方法,可能会对小数存在精度损失

cell.setCellType(CellType.STRING); //读取前将单元格设置为文本类型读取

例如: 2.2 --> 2.1999999997

目前的解决办法:

一. 将excel单元格改为文本类型

注意,直接修改单元格属性不管用, 使用 分列 的方式,可以实现将数值改为文本类型。

二. java处理

public class CommonUtil { private static NumberFormat numberFormat = NumberFormat.getNumberInstance(); static { numberFormat.setGroupingUsed(false); } public static String getCellValue(Cell cell) { if (null == cell) { return ''; } Object value; switch (cell.getCellTypeEnum()) { // 省略 case NUMERIC:double d = cell.getNumericCellValue(); value = numberFormat.format(d); // 关键在这里! //省略 } return value == null ? '' : value.toString(); }}

上面的方法可以获取一个正确的数值.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持好吧啦网。

标签: excel
相关文章: