[bug-65227] add NPE guard in SheetUtil. Thanks to Petr Blaha

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888553 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-04-09 08:21:13 +00:00
parent 30d8d17735
commit 0c3aa44d36
1 changed files with 11 additions and 9 deletions

View File

@ -160,6 +160,7 @@ public class SheetUtil {
double width = -1;
if (cellType == CellType.STRING) {
RichTextString rt = cell.getRichStringCellValue();
if (rt != null && rt.getString() != null) {
String[] lines = rt.getString().split("\\n");
for (String line : lines) {
String txt = line + defaultChar;
@ -173,6 +174,7 @@ public class SheetUtil {
width = getCellWidth(defaultCharWidth, colspan, style, width, str);
}
}
} else {
String sval = null;
if (cellType == CellType.NUMERIC) {