java 以string形式获取excel的列报错

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

NUMERIC不能转换为STRING

解决办法:

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

 

转载于:https://www.cnblogs.com/mohehpc/p/8337728.html

你可能感兴趣的:(java)