Java POI读取excel中数值精度损失
Posted Steven5007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java POI读取excel中数值精度损失相关的知识,希望对你有一定的参考价值。
描述:
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(); } }
上面的方法可以获取一个正确的数值.
相关链接:
https://blog.csdn.net/qq_34531925/article/details/76735345
https://www.cnblogs.com/magicya/p/12626377.html
以上是关于Java POI读取excel中数值精度损失的主要内容,如果未能解决你的问题,请参考以下文章
java读取文件时 int强制转换为 byte,是如何保证结果正确的??不是损失了精度吗??
java poi 读取excel 数字类型的怎么读到以后1都变成了1.0?
阅读Microsoft Word文档时出现Android Apache POI错误:org.apache.xmlbeans.SchemaTypeLoaderException无法解析句柄的类型(代码片