vote up 0 vote down star

What is the easiest way to get the text (words) or a PDF doc as a one long String or array of Strings.

I have tried pdfbox but that is not working for me.

flag

60% accept rate
1  
What about pdfbox didn't work? Are you looking for alternatives or a fix for your existing problem? – Catchwa Nov 5 at 5:11
Well I didn't like the API was designed either, I have had a quick look at iText and I think that is a better option. The API seems more logical for my needs. – Ankur Nov 5 at 6:24

4 Answers

vote up 3 vote down check

iText.

link|flag
I thought iText didn't do text extraction? It's more for building PDFs. Can you post how you're using it? – Sam Barnum Nov 5 at 15:52
1  
iText does have text extraction. For example, the following code extracts texts from page 3 of the input pdf. PdfTextExtractor parser =new PdfTextExtractor(new PdfReader("C:/Text.pdf")); parser.getTextFromPage(3); – Kushal Paudyal Nov 5 at 16:28
vote up 0 vote down

use iText. The following snippet for example will extract the text.

PdfTextExtractor parser =new PdfTextExtractor(new PdfReader("C:/Text.pdf"));
parser.getTextFromPage(3);

link|flag
vote up 0 vote down

PDFBox barfs on many newer PDFs, especially those with embedded PNG images.

I was very impressed with PDFTextStream

link|flag
vote up 1 vote down

JPedal and Multivalent also offer text extraction in Java or you could access xpdf using Runtime.exec

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.