up vote 5 down vote favorite
2
share [g+] share [fb]

how to Parse a PDF file and write the content in word file using Java?

link|improve this question

41% accept rate
feedback

protected by Robert Harvey Apr 11 '11 at 21:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

4 Answers

For parsing a PDF file in Java, you can use Apache PDFBox: http://incubator.apache.org/pdfbox/

For reading/writing Word (or other Office) file formats in Java, try POI: http://poi.apache.org/

Both are free.

link|improve this answer
Alternatively, you can use docx4j to write the docx. Like POI, its free. – Jason Nov 17 '10 at 3:28
feedback

You might want to try any of these:

Once you are reading the contents of the PDF file, you can as well store them in a ODT file or a text file. For ODT file, try http://odftoolkit.openoffice.org.

Best!

link|improve this answer
feedback

Try the iText java library:

iText is an ideal library for developers looking to enhance web- and other applications with dynamic PDF document generation and/or manipulation.

It can be used for your parsing step.

As for generating word documents - the OpenOffice Java API might be able to generate Word compatible docs (no personal experience with this API).

link|improve this answer
feedback

You could use iText if the source PDF is mostly text. Images and such are quite hard to handle while parsing. If it's text only, it's as easy as 10 lines of code. See the iText manual for examples.

For writing word files there's only Apache POI. It can be a little tricky to figure out, but for such a simple task it shouldn't be any problem.

link|improve this answer
feedback

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