Converting Microsoft Office documents and PDF documents to image file with Java
In my current project, I need to convert Microsoft Office doc开发者_如何学Pythonuments and PDF documents to image file with Java. Is there any open source Java library for that. And if so, which is the most reliable?
you can try using JODConverter .
It is a open source project. The Java OpenDocument Converter, converts documents between different office formats.
Picked from here
You can use Apache PDFBox for PDF and Apache POI for converting Microsoft office documents.
Apache PDFBox Apache POI
You can also use docx4j to convert the Office Docs to PDF.
精彩评论