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

Posted Yan Yang

tags:

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

ref:http://www.tpyyes.com/a/kuozhan/2017/0902/199.html

poi导入excel表格数据时报java.lang.IllegalStateException: Cannot get a STRING value from a NUMERIC cell异常是因为在读取cell单元格字符串时,有number类型的数据,因此需要把它转化为纯String类型,这样就不会报错了。

报错的地方类似于这样。

//获取单元格
XSSFCell cell = row.getCell(0);
//获取单元格数据
String cellValue = cell.getStringCellValue();
//获取单元格
XSSFCell cell = row.getCell(0);
//设置单元格类型
cell.setCellType(CellType.STRING);
//获取单元格数据
String cellValue = cell.getStringCellValue();

完美解决!

以上是关于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

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

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

zabbix提示zabbix server is not running &Get value from agent failed: cannot connect to

Cannot switch on a value of type String for source level below 1.7. Only convertible int values or e