@Internal public final class DocumentFactoryHelper extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static java.io.InputStream |
getDecryptedStream(DirectoryNode root,
java.lang.String password)
Wrap the OLE2 data of the DirectoryNode into a decrypted stream by using
the given password.
|
static java.io.InputStream |
getDecryptedStream(POIFSFileSystem fs,
java.lang.String password)
Wrap the OLE2 data in the
POIFSFileSystem into a decrypted stream by using
the given password. |
static boolean |
hasOOXMLHeader(java.io.InputStream inp)
Deprecated.
in 3.17-beta2, use
FileMagic.valueOf(InputStream) == FileMagic.OOXML instead |
public static java.io.InputStream getDecryptedStream(POIFSFileSystem fs, java.lang.String password) throws java.io.IOException
POIFSFileSystem
into a decrypted stream by using
the given password.fs
- The OLE2 stream for the documentpassword
- The password, null if the default password should be usedjava.io.IOException
- If an error occurs while decrypting or if the password does not matchpublic static java.io.InputStream getDecryptedStream(DirectoryNode root, java.lang.String password) throws java.io.IOException
root
- The OLE2 directory node for the documentpassword
- The password, null if the default password should be usedjava.io.IOException
- If an error occurs while decrypting or if the password does not match@Deprecated @Removal(version="4.0") public static boolean hasOOXMLHeader(java.io.InputStream inp) throws java.io.IOException
FileMagic.valueOf(InputStream)
== FileMagic.OOXML instead
If unsure if your InputStream does support mark / reset,
use FileMagic.prepareToCheckMagic(InputStream)
to wrap it and make
sure to always use that, and not the original!
inp
- An InputStream which supports either mark/resetjava.io.IOException
Copyright 2020 The Apache Software Foundation or its licensors, as applicable.