From 0bcb28936555c76824cc72c0890a9c01635304b3 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 15 Jul 2020 23:11:33 +0000 Subject: [PATCH] try to make examples more robust - to fix integration tests git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1879913 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java | 2 +- .../org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java b/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java index 8540cb237b..5b9a519b28 100644 --- a/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java +++ b/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java @@ -132,7 +132,7 @@ public class XLSX2CSV { //noinspection ResultOfMethodCallIgnored Double.parseDouble(formattedValue); output.append(formattedValue); - } catch (NumberFormatException e) { + } catch (Exception e) { output.append('"'); output.append(formattedValue); output.append('"'); diff --git a/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java b/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java index 9f4d1e629b..3c79e1c4fa 100644 --- a/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java +++ b/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java @@ -133,7 +133,7 @@ public class FromHowTo { throws SAXException { // Process the last contents as required. // Do now, as characters() may be called more than once - if(nextIsString && !lastContents.isEmpty()) { + if(nextIsString && !lastContents.trim().isEmpty()) { Integer idx = Integer.valueOf(lastContents); lastContents = lruCache.get(idx); if (lastContents == null && !lruCache.containsKey(idx)) { -- 2.39.5