JPedal now contains an Apache Tika Parser which can parse and extract unstructured text from PDF files.
How to use an Apache Tika PDF Parser
Just like any other Apache Tika Parser, you must call the parse()
method with a few parameters.
First, you must pass a TikaInputStream
containing the path to your PDF file.
Second, you must pass a ContentHandler
. It is advisable to set the character limit to -1
otherwise, the whole PDF file may not be parsed.
Next, you pass a Metadata
. This can be a blank instance or it can contain the password to the PDF file if it is encrypted.
Finally, a ParseContext
is not needed so the last argument can be null.
The extracted text is now stored in the ContentHandler
!
Learn More
You can find more information about our Apache Tika Parser here.
Our software libraries allow you to
Convert PDF to HTML in Java |
Convert PDF Forms to HTML5 in Java |
Convert PDF Documents to an image in Java |
Work with PDF Documents in Java |
Read and Write AVIF, HEIC, WEBP and other image formats |