Excel导入异常:Cannot get a text value from a numeric cell

Posted 王萌萌萌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Excel导入异常:Cannot get a text value from a numeric cell相关的知识,希望对你有一定的参考价值。


    POI操作Excel时偶尔会出现Cannot get a text value from a numeric cell的异常错误,这不,小编就碰上了。


    异常原因

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

    小编出现此异常的问题代码如下:

row.getCell(0).getStringCellValue();


    解决办法

    先设置Cell的类型,然后就可以把纯数字作为String类型读进来了:

if(row.getCell(0)!=null)
          row.getCell(0).setCellType(Cell.CELL_TYPE_STRING);
          stuUser.setPhone(row.getCell(0).getStringCellValue());
     





以上是关于Excel导入异常:Cannot get a text value from a numeric cell的主要内容,如果未能解决你的问题,请参考以下文章

Cannot get a STRING value from a NUMERIC cell poi异常解决

java.lang.IllegalStateException: Cannot get a STRING value from a NUMERIC cell

使用poi读取excel文件 Cannot get a text value from a numeric cell

Cannot get a connection, pool exhausted解决办法

Cannot get a connection, pool error Timeout waiting for idle object

Excel 导入 分批导入