From: Javen O'Neal Date: Sun, 17 Jul 2016 10:27:44 +0000 (+0000) Subject: close workbook to avoid resource leak X-Git-Tag: REL_3_15_BETA3~85 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5b3a1ad4cee1672c0126abc48035a9974d0709b8;p=poi.git close workbook to avoid resource leak git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753053 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/examples/src/org/apache/poi/xssf/usermodel/examples/HyperlinkExample.java b/src/examples/src/org/apache/poi/xssf/usermodel/examples/HyperlinkExample.java index e4a72fcc00..a84d32a193 100644 --- a/src/examples/src/org/apache/poi/xssf/usermodel/examples/HyperlinkExample.java +++ b/src/examples/src/org/apache/poi/xssf/usermodel/examples/HyperlinkExample.java @@ -17,6 +17,7 @@ package org.apache.poi.xssf.usermodel.examples; import java.io.FileOutputStream; +import java.io.IOException; import org.apache.poi.common.usermodel.HyperlinkType; import org.apache.poi.ss.usermodel.Cell; @@ -35,7 +36,7 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class HyperlinkExample { - public static void main(String[]args) throws Exception{ + public static void main(String[]args) throws IOException { Workbook wb = new XSSFWorkbook(); //or new HSSFWorkbook(); CreationHelper createHelper = wb.getCreationHelper(); @@ -91,6 +92,7 @@ public class HyperlinkExample { FileOutputStream out = new FileOutputStream("hyperinks.xlsx"); wb.write(out); out.close(); - + + wb.close(); } }