Package org.apache.poi.ooxml.util
Class PackageHelper
- java.lang.Object
-
- org.apache.poi.ooxml.util.PackageHelper
-
public final class PackageHelper extends Object
Provides handy methods to work with OOXML packages
-
-
Constructor Summary
Constructors Constructor Description PackageHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static OPCPackageclone(OPCPackage pkg, File file)Deprecated.this method is not used internally and creates temp files that are not well handledstatic OPCPackageopen(InputStream is)static OPCPackageopen(InputStream stream, boolean closeStream)
-
-
-
Method Detail
-
open
public static OPCPackage open(InputStream is) throws IOException
- Throws:
IOException
-
open
public static OPCPackage open(InputStream stream, boolean closeStream) throws IOException
- Parameters:
stream- The InputStream to read fromcloseStream- whether to close the stream (default is false)- Returns:
- OPCPackage
- Throws:
IOException- If reading data from the stream fails- Since:
- POI 5.2.0
-
clone
@Deprecated @Removal(version="6.0.0") public static OPCPackage clone(OPCPackage pkg, File file) throws OpenXML4JException, IOException
Deprecated.this method is not used internally and creates temp files that are not well handledClone the specified package.- Parameters:
pkg- the package to clonefile- the destination file- Returns:
- the cloned package
- Throws:
OpenXML4JExceptionIOException
-
-