POI getCell(0).getStringCellValue() 空指针异常
Row row = sheet.getRow(row);
// 空指针 null
String questions = row.getCell(0).getStringCellValue();
修改成这个,null会被替换成""空字符串
POI getCell(0).getStringCellValue() 空指针异常
Row row = sheet.getRow(row);
// 空指针 null
String questions = row.getCell(0).getStringCellValue();
修改成这个,null会被替换成""空字符串