当前位置: 代码迷 >> J2EE >> java读取Excel时出现读取到那一空列时,它把上一列的值给读取到下一列去了,请教这是什么愿因
  详细解决方案

java读取Excel时出现读取到那一空列时,它把上一列的值给读取到下一列去了,请教这是什么愿因

热度:49   发布时间:2016-04-22 00:51:46.0
java读取Excel时出现读取到那一空列时,它把下一列的值给读取到上一列去了,请问这是什么愿因


见图:50列,第一列读的成功,读第二列为空,直接把下面列的值前移了。
我想知道为什么会出现HSSFCell对象为空的情况。怎么解决。

Iterator<HSSFCell> cit = (Iterator<HSSFCell>) row.cellIterator();
while(cit.hasNext())
{

HSSFCell cell = cit.next();

if (cell == null) {
break;
}

String strValue = parentReader.getCellValue(cell);


------解决方案--------------------
这个问题 我遇到过 给分就告诉你 哈哈
------解决方案--------------------
Java code
for(Row row : sheet) {   for(int cn=0; cn<row.getLastCellNum(); cn++) {       // If the cell is missing from the file, generate a blank one       Cell cell = row.getCell(cn, MissingCellPolicy.CREATE_NULL_AS_BLANK);       // Print the cell for debugging       System.out.println("CELL: " + cn + " --> " + cell.toString());   }}
  相关解决方案