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中数值精度损失的主要内容,如果未能解决你的问题,请参考以下文章

使用 pandas 读取 excel 时精度损失

java poi 读取excel 数字类型的怎么读到以后1都变成了1.0?

Java Poi 读取excel 对所有类型进行处理

Java poi导出Excel,小数点后面数据缺失

用java的poi类读取一个excel表格的内容后再写入到一个新excel表格中的完整代码

poi读取excel 列宽