JXL 取的空值报 ArrayIndexOutOfBoundsException 解决方法

			

for(int j=2;j< 30;j++){
	 
 paramMap.put("ATTRIBUTE"+(j-1), sheet.getCell(i).getContents().trim());
					
			}


上述代码 sheet.getCell(i).getContents() 当单元格为空时,报ArrayIndexOutOfBoundsException



解决方案:sheet.getCell(i).getContents() 替换为

sheet.getCell(j,i).getContents()


j代表列 i代表行

你可能感兴趣的:(JXL,getContents)