博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用POI导入Excel异常Cannot get a text value from a numeric cell 解决
阅读量:5253 次
发布时间:2019-06-14

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

POI操作Excel时因为Excel数据Cell有不同的类型,会出现Cannot get a text value from a numeric cell的异常错误。

异常原因:Excel数据Cell有不同的类型,当我们试图从一个数字类型的Cell读取出一个字符串并写入时,就会出现Cannot get a text value from a numeric cell的异常错误。

此异常常见于类似如下代码中:row.getCell(i).getStringCellValue();

解决办法:先设置Cell的类型,将其他类型先转换成String类型

                    HSSFCell cell = row.getCell(j);

                    if (row.getCell(j)!=null) {
                        row.getCell(j).setCellType(Cell.CELL_TYPE_STRING);
                    }                    
                    String value = cell.getStringCellValue();

 

转载于:https://www.cnblogs.com/xijin-wu/p/5725716.html

你可能感兴趣的文章