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

 

相关文章:

  • 2021-04-19
  • 2021-12-23
  • 2021-08-12
  • 2021-07-07
  • 2021-09-19
  • 2021-12-16
  • 2021-07-21
  • 2021-12-17
猜你喜欢
  • 2022-02-09
  • 2021-09-29
  • 2021-10-26
  • 2021-12-31
  • 2022-12-23
  • 2021-09-08
相关资源
相似解决方案