"cell" is null 에러 해결
·
개발중/Troubleshooting
"org.apache.poi.ss.usermodel.Cell.getStringCellValue()" because "cell" is null 액셀을 읽어 행을 가지고 올 때 해당 row 가 비어있다는 뜻이다.Optional 을 사용해서 null 체크를 했었는데 그것보다는 null 이 알맞다.Row row = workSheet.getRow(i); if( row == null ){ continue; }