[github-260] Check XDGFCell value for null to avoid NullPointerException. Thanks to Dmitry Komarov.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893988 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-10-07 13:28:45 +00:00
parent 56520578dd
commit 36cf0e943e
1 changed files with 14 additions and 5 deletions

View File

@ -41,7 +41,7 @@ public class XDGFCell {
public static Boolean maybeGetBoolean(Map<String, XDGFCell> cells,
String name) {
XDGFCell cell = cells.get(name);
if (cell == null)
if (cell == null || cell.getValue() == null)
return null;
if (cell.getValue().equals("0"))
@ -72,7 +72,7 @@ public class XDGFCell {
XDGFCell cell = cells.get(name);
if (cell != null) {
String v = cell._cell.getV();
if (v.equals("Themed"))
if (v == null || v.equals("Themed"))
return null;
return v;
}
@ -80,6 +80,9 @@ public class XDGFCell {
}
public static Double parseDoubleValue(CellType cell) {
if (cell.getV() == null) {
return null;
}
try {
return Double.parseDouble(cell.getV());
} catch (NumberFormatException e) {
@ -91,6 +94,9 @@ public class XDGFCell {
}
public static Integer parseIntegerValue(CellType cell) {
if (cell.getV() == null) {
return null;
}
try {
return Integer.parseInt(cell.getV());
} catch (NumberFormatException e) {
@ -106,6 +112,9 @@ public class XDGFCell {
* @return A value converted to inches
*/
public static Double parseVLength(CellType cell) {
if (cell.getV() == null) {
return null;
}
try {
return Double.parseDouble(cell.getV());
} catch (NumberFormatException e) {