vote up 2 vote down star
2

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

flag

46% accept rate

4 Answers

vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up -3 vote down

Did you even try and google for this very question ?

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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