how to Parse a PDF file and write the content in word file using Java?
|
|
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. |
||
|
|
|
|
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! |
||
|
|
|
|
Did you even try and google for this very question ? |
||
|
|
|
|
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). |
||
|
|
