Package org.apache.tika.parser.iwork
Class IWorkPackageParser
- java.lang.Object
-
- org.apache.tika.parser.iwork.IWorkPackageParser
-
- All Implemented Interfaces:
Serializable,org.apache.tika.parser.Parser
public class IWorkPackageParser extends Object implements org.apache.tika.parser.Parser
A parser for the IWork container files. This includes *.key, *.pages and *.numbers files. This parser delegates the relevant entries to aContentHandlerthat parsers the content.Currently supported formats:
- Keynote format version 2.x. Currently only tested with Keynote version 5.x
- Pages format version 1.x. Currently only tested with Pages version 4.0.x
- Numbers format version 1.x. Currently only tested with Numbers version 2.0.x
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIWorkPackageParser.IWORKDocumentType
-
Field Summary
Fields Modifier and Type Field Description static StringIWORK_COMMON_ENTRYAll iWork files contain one of these, so we can detect based on itstatic Set<String>IWORK_CONTENT_ENTRIESWhich files within an iWork file contain the actual content?
-
Constructor Summary
Constructors Constructor Description IWorkPackageParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<org.apache.tika.mime.MediaType>getSupportedTypes(org.apache.tika.parser.ParseContext context)voidparse(InputStream stream, ContentHandler handler, org.apache.tika.metadata.Metadata metadata, org.apache.tika.parser.ParseContext context)
-
-
-
Field Detail
-
IWORK_CONTENT_ENTRIES
public static final Set<String> IWORK_CONTENT_ENTRIES
Which files within an iWork file contain the actual content?
-
IWORK_COMMON_ENTRY
public static final String IWORK_COMMON_ENTRY
All iWork files contain one of these, so we can detect based on it- See Also:
- Constant Field Values
-
-
Method Detail
-
getSupportedTypes
public Set<org.apache.tika.mime.MediaType> getSupportedTypes(org.apache.tika.parser.ParseContext context)
- Specified by:
getSupportedTypesin interfaceorg.apache.tika.parser.Parser
-
parse
public void parse(InputStream stream, ContentHandler handler, org.apache.tika.metadata.Metadata metadata, org.apache.tika.parser.ParseContext context) throws IOException, SAXException, org.apache.tika.exception.TikaException
- Specified by:
parsein interfaceorg.apache.tika.parser.Parser- Throws:
IOExceptionSAXExceptionorg.apache.tika.exception.TikaException
-
-