码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-07-22 18:31:35      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:text   tst   detail   excel   blog   字符串   gets   错误   代码   

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());
     }
---------------------
作者:ysughw
来源:CSDN
原文:https://blog.csdn.net/ysughw/article/details/9288307
版权声明:本文为博主原创文章,转载请附上博文链接!

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

标签:text   tst   detail   excel   blog   字符串   gets   错误   代码   

原文地址:https://www.cnblogs.com/matd/p/11227249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!