org.apache.tika.parser.pdf
Class PDFParser

java.lang.Object
  extended by org.apache.tika.parser.AbstractParser
      extended by org.apache.tika.parser.pdf.PDFParser
All Implemented Interfaces:
Serializable, org.apache.tika.parser.Parser

public class PDFParser
extends org.apache.tika.parser.AbstractParser

PDF parser.

This parser can process also encrypted PDF documents if the required password is given as a part of the input metadata associated with a document. If no password is given, then this parser will try decrypting the document using the empty password that's often used with PDFs.

See Also:
Serialized Form

Field Summary
static String PASSWORD
          Metadata key for giving the document password to the parser.
 
Constructor Summary
PDFParser()
           
 
Method Summary
 boolean getEnableAutoSpace()
           
 boolean getExtractAnnotationText()
          If true, text in annotations will be extracted.
 Set<org.apache.tika.mime.MediaType> getSupportedTypes(org.apache.tika.parser.ParseContext context)
           
 void parse(InputStream stream, ContentHandler handler, org.apache.tika.metadata.Metadata metadata, org.apache.tika.parser.ParseContext context)
           
 void setEnableAutoSpace(boolean v)
          If true (the default), the parser should estimate where spaces should be inserted between words.
 void setExtractAnnotationText(boolean v)
          If true (the default), text in annotations will be extracted.
 
Methods inherited from class org.apache.tika.parser.AbstractParser
parse
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PASSWORD

public static final String PASSWORD
Metadata key for giving the document password to the parser.

Since:
Apache Tika 0.5
See Also:
Constant Field Values
Constructor Detail

PDFParser

public PDFParser()
Method Detail

getSupportedTypes

public Set<org.apache.tika.mime.MediaType> getSupportedTypes(org.apache.tika.parser.ParseContext context)

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
Throws:
IOException
SAXException
org.apache.tika.exception.TikaException

setEnableAutoSpace

public void setEnableAutoSpace(boolean v)
If true (the default), the parser should estimate where spaces should be inserted between words. For many PDFs this is necessary as they do not include explicit whitespace characters.


getEnableAutoSpace

public boolean getEnableAutoSpace()
See Also:
#setEnableAutoSpace.

setExtractAnnotationText

public void setExtractAnnotationText(boolean v)
If true (the default), text in annotations will be extracted.


getExtractAnnotationText

public boolean getExtractAnnotationText()
If true, text in annotations will be extracted.



Copyright © 2007-2011 The Apache Software Foundation. All Rights Reserved.