728x90
반응형
"org.apache.poi.ss.usermodel.Cell.getStringCellValue()" because "cell" is null
액셀을 읽어 행을 가지고 올 때 해당 row 가 비어있다는 뜻이다.
Optional 을 사용해서 null 체크를 했었는데 그것보다는 null 이 알맞다.
Row row = workSheet.getRow(i);
if( row == null ){
continue;
}
🖤 글이 도움이 되었다면 유튜브 클릭 해주세요 🖤
https://www.youtube.com/channel/UCgkxlLdjrlsFyp2GGxzY59A
728x90
반응형
'개발중 > troubleshooting' 카테고리의 다른 글
npm 병합 에러 해결 (0) | 2022.01.17 |
---|---|
make sure to provide the "name" option. 에러 해결 (0) | 2022.01.17 |
crontab 데몬 작동 확인 ! 왜 안돼지 ..? (0) | 2022.01.13 |
java.lang.ClassNotFoundException: org.apache.maven.wrapper.MavenWrapperMain 에러 해결 (0) | 2021.12.19 |
org.springframework.dao.InvalidDataAccessApiUsageException (0) | 2021.12.18 |