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

I have a directory filled with subdirectories, all with PDFs files and/or subdirectories filled with PDF files. Essentially, a very unorganized group of PDFs. What I'd like to do is parse each file, pulling the contents of one specific field, and dumping the output to a text file. The end result would be a large text file containing the contents of the field within each individual PDF. Surely this is possible. The question is whether it can be done easily, without much programming.

share|improve this question

2 Answers

In my opinion, the best option is to pay a little money for a 3rd party component that will provide an API.

http://www.aspose.com/categories/java-components/aspose.pdf-for-java/default.aspx http://www.pdfcomponent.com/java-pdf/

If it doesn't have to be in Java, I believe that PHP has an open source library.

share|improve this answer

I've only ever used the PDF generation features of iText, but I know it also has PDF text extraction features. It's licensed under the GPL, or a paid commercial license if you need to redistribute it.

http://itextpdf.com/

share|improve this answer
This looks promising! Maybe this is the place to focus on: api.itextpdf.com/itext/com/itextpdf/text/pdf/… – anon Jul 21 '11 at 4:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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