how to Parse a PDF file and write the content in word file using Java?
|
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.
|
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. | |||
|
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! | |||
|
feedback
|
|
Try the iText java library:
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). | |||
|
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. | |||
|
feedback
|