|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.extractor.ExtractorFactory
public class ExtractorFactory
Figures out the correct POITextExtractor for your supplied document, and returns it.
Note 1 - will fail for many file formats if the POI Scratchpad jar is not present on the runtime classpath
Note 2 - rather than using this, for most cases you would be better off switching to Apache Tika instead!
Field Summary | |
---|---|
static java.lang.String |
CORE_DOCUMENT_REL
|
protected static java.lang.String |
STRICT_DOCUMENT_REL
|
protected static java.lang.String |
VISIO_DOCUMENT_REL
|
Constructor Summary | |
---|---|
ExtractorFactory()
|
Method Summary | |
---|---|
static POITextExtractor |
createExtractor(DirectoryNode poifsDir)
|
static POITextExtractor |
createExtractor(java.io.File f)
|
static POITextExtractor |
createExtractor(java.io.InputStream inp)
|
static POIOLE2TextExtractor |
createExtractor(NPOIFSFileSystem fs)
|
static POIXMLTextExtractor |
createExtractor(OPCPackage pkg)
Tries to determine the actual type of file and produces a matching text-extractor for it. |
static POIOLE2TextExtractor |
createExtractor(OPOIFSFileSystem fs)
|
static POIOLE2TextExtractor |
createExtractor(POIFSFileSystem fs)
|
static java.lang.Boolean |
getAllThreadsPreferEventExtractors()
Should all threads prefer event based over usermodel based extractors? (usermodel extractors tend to be more accurate, but use more memory) Default is to use the thread level setting, which defaults to false. |
static POITextExtractor[] |
getEmbededDocsTextExtractors(POIOLE2TextExtractor ext)
Returns an array of text extractors, one for each of the embedded documents in the file (if there are any). |
static POITextExtractor[] |
getEmbededDocsTextExtractors(POIXMLTextExtractor ext)
Returns an array of text extractors, one for each of the embedded documents in the file (if there are any). |
protected static boolean |
getPreferEventExtractor()
Should this thread use event based extractors is available? Checks the all-threads one first, then thread specific. |
static boolean |
getThreadPrefersEventExtractors()
Should this thread prefer event based over usermodel based extractors? (usermodel extractors tend to be more accurate, but use more memory) Default is false. |
static void |
setAllThreadsPreferEventExtractors(java.lang.Boolean preferEventExtractors)
Should all threads prefer event based over usermodel based extractors? If set, will take preference over the Thread level setting. |
static void |
setThreadPrefersEventExtractors(boolean preferEventExtractors)
Should this thread prefer event based over usermodel based extractors? Will only be used if the All Threads setting is null. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String CORE_DOCUMENT_REL
protected static final java.lang.String VISIO_DOCUMENT_REL
protected static final java.lang.String STRICT_DOCUMENT_REL
Constructor Detail |
---|
public ExtractorFactory()
Method Detail |
---|
public static boolean getThreadPrefersEventExtractors()
public static java.lang.Boolean getAllThreadsPreferEventExtractors()
public static void setThreadPrefersEventExtractors(boolean preferEventExtractors)
public static void setAllThreadsPreferEventExtractors(java.lang.Boolean preferEventExtractors)
protected static boolean getPreferEventExtractor()
public static POITextExtractor createExtractor(java.io.File f) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
public static POITextExtractor createExtractor(java.io.InputStream inp) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
public static POIXMLTextExtractor createExtractor(OPCPackage pkg) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
pkg
- An OPCPackage
.
POIXMLTextExtractor
for the given file.
java.io.IOException
- If an error occurs while reading the file
OpenXML4JException
- If an error parsing the OpenXML file format is found.
org.apache.xmlbeans.XmlException
- If an XML parsing error occurs.
java.lang.IllegalArgumentException
- If no matching file type could be found.public static POIOLE2TextExtractor createExtractor(POIFSFileSystem fs) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
public static POIOLE2TextExtractor createExtractor(NPOIFSFileSystem fs) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
public static POIOLE2TextExtractor createExtractor(OPOIFSFileSystem fs) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
public static POITextExtractor createExtractor(DirectoryNode poifsDir) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
public static POITextExtractor[] getEmbededDocsTextExtractors(POIOLE2TextExtractor ext) throws java.io.IOException, OpenXML4JException, org.apache.xmlbeans.XmlException
POITextExtractor
for each embedded file.
java.io.IOException
OpenXML4JException
org.apache.xmlbeans.XmlException
@NotImplemented public static POITextExtractor[] getEmbededDocsTextExtractors(POIXMLTextExtractor ext)
POITextExtractor
for each embedded file.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |