Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to read some text data in a pdf using java. Please help me to do this

Any help is appreciated

share|improve this question

closed as not constructive by Will Apr 29 at 13:46

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 12 down vote accepted

PDFBox is the best library I've found for this purpose, it's comprehensive and really quite easy to use if you're just doing basic text extraction. Examples are provided here.

It explains it on the page, but one thing to watch out for is that the start and end indexes when using setStartPage() and setEndPage() are both inclusive. I skipped over that explanation first time round and then it took me a while to realise why I was getting more than one page back with each call!

Itext is another alternative that also works with C#, though I've personally never used it. It's more low level than PDFBox, so less suited to the job if all you need is basic text extraction.

share|improve this answer
thanx helps a lot – yohan.jayarathna Jan 27 '11 at 4:27
@berry120 Please fix the link to http://pdfbox.apache.org/userguide/text_extraction.html, as http://www.pdfbox.org/userguide/text_extraction.html (current link as of 08/15/2012) will now lead to unrelated "Premier Diet and Fitness" website. – TheLima Aug 15 '12 at 20:03
@TheLima Thanks for pointing that out, now fixed. – berry120 Aug 15 '12 at 23:10

PDFBox contains tools for text extraction.

iText has more low-level support for text manipulation, but you'd have to write a considerable amount of code to get text extraction.

iText in Action contains a good overview of the limitations of text extraction from PDF, regardless of the library used (Section 18.2: Extracting and editing text), and a convincing explanation why the library does not have text extraction support. In short, it's relatively easy to write a code that will handle simple cases, but it's basically impossible to extract text from PDF in general.

share|improve this answer
beat me to it by 20 seconds – Flexo Jan 24 '11 at 17:14
thanx helps a lot – yohan.jayarathna Jan 27 '11 at 4:28

Use a PDF library such as iText.

share|improve this answer
I like iText, but it doesn't do text extraction out-of-the-box: it only gives you low-level tools so that you can do it yourself. There's a nice section in "iText in Action" about the (library-independent) problems with text extraction. – Bolo Jan 24 '11 at 17:23
thanx helps a lot – yohan.jayarathna Jan 27 '11 at 4:27

try this it works fine

 try
    {
    document = PDDocument.load(f);
    document.getClass();
if( document.isEncrypted() )
{
try
{
document.decrypt( "" );
}
catch( InvalidPasswordException e )
{
System.err.println( "Error: Document is encrypted with a password." );
System.exit( 1 );
}
}

PDFTextStripperByArea stripper = new PDFTextStripperByArea();
stripper.setSortByPosition( true );
PDFTextStripper stripper = new PDFTextStripper();
String st = stripper.getText(document);

   System.out.println(st);

you need to use pdfbox api.

share|improve this answer

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