Browse Source

Ensure that file handles are closed for encrypted files

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839197 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
Dominik Stadler 5 years ago
parent
commit
11ca89b89d

+ 4
- 0
src/java/org/apache/poi/sl/usermodel/SlideShowFactory.java View File

@@ -110,6 +110,10 @@ public class SlideShowFactory {
return createXSLFSlideShow(stream);
} finally {
IOUtils.closeQuietly(stream);

// as we processed the full stream already, we can close the filesystem here
// otherwise file handles are leaked
root.getFileSystem().close();
}
}


+ 5
- 1
src/java/org/apache/poi/ss/usermodel/WorkbookFactory.java View File

@@ -110,6 +110,10 @@ public class WorkbookFactory {
return createXSSFWorkbook(stream);
} finally {
IOUtils.closeQuietly(stream);

// as we processed the full stream already, we can close the filesystem here
// otherwise file handles are leaked
root.getFileSystem().close();
}
}

@@ -137,7 +141,7 @@ public class WorkbookFactory {
* <p>Note that in order to properly release resources the
* Workbook should be closed after use.</p>
*
* @param pkg The {@link OPCPackage} opened for reading data.
* @param pkg The {@link org.apache.poi.openxml4j.opc.OPCPackage} opened for reading data.
*
* @return The created Workbook
*

Loading…
Cancel
Save