How to convert doc to pdf using java api. where document contains various formats such as tables in ms word. when converting to pdf using iText. where actual document looks different to converted pdf. please provide any api not an exe installed for converting . must be an open source
|
This is quite a hard task, ever harder if you want perfect results (impossible without using Word) as such the number of APIs that just do it all for you in pure Java and are open source is zero I believe (Update: I am wrong, see below). Your basic options are as follows:
Update - 2010-11-17 Here is a copy of my blog post on this subject which outlines existing products that support Word-to-PDF in Java. Converting Microsoft Office (Word, Excel) documents to PDFs in Java Three products that I know of can render Office documents: JDocToPdf Uses Apache POI to read the Word document and iText to write the PDF. Completely free, 100% Java but has some limitations. Snowbound Imaging SDK Snowbound appears to be a 100% Java solution and costs over $2,500. It contains samples describing how to convert documents in the evaluation download. OpenOffice API OpenOffice is a native Office suite which supports a Java API. This supports reading Office documents and writing PDF documents. The SDK contains an example in document conversion (examples/java/DocumentHandling/DocumentConverter.java). To write PDFs you need to pass the "writer_pdf_Export" writer rather than the "MS Word 97" one. Or you can use the wrapper API JODConverter. |
||||
|
|
|
You can use JODConverter for this purpose. It can be used to convert documents between different office formats. such as:
More details about it can be found here: http://www.artofsolving.com/opensource/jodconverter |
|||
|
|
|
For excel(easy read and write): http://www.dancrintea.ro/xls-to-pdf/ For word(read, convert): http://www.dancrintea.ro/doc-to-pdf/ |
|||
|
|
|
I agree with posters listing OpenOffice as a high-fidelity import/export facility of word / pdf docs with a Java API and it also works across platforms. OpenOffice import/export filters are pretty powerful and preserve most formatting during conversion to various formats including PDF. Docmosis and JODReports value-add to make life easier than learning the OpenOffice API directly which can be challenging. |
||||
|
|
|
check out this site http://www.daniweb.com/forums/thread130906.html |
|||
|
|
I haven't tried using it for MS Word, but I've had good success reading MS Excel documents using Apache POI - http://poi.apache.org/ |
|||
|
|