Good way to create PDF from Office documents in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:40:26Z http://stackoverflow.com/feeds/question/156915 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/156915/good-way-to-create-pdf-from-office-documents-in-java 3 Good way to create PDF from Office documents in Java Sindri 2008-10-01T09:56:28Z 2008-12-01T09:39:07Z <p>I'm looking for a good way to convert Office (mostly Microsoft) documents to PDF in Java. I've been looking at using the OpenOffice SDK but from the samples I've looked at it looks like this requires having OpenOffice running in server mode to do the work.</p> <p>Does anyone know of a good way to do this? Good meaning the less external requirements, the better. A 100% Java API would be best, but I don't expect that actually exists.</p> http://stackoverflow.com/questions/156915/good-way-to-create-pdf-from-office-documents-in-java/156946#156946 1 Answer by dhiller for Good way to create PDF from Office documents in Java dhiller 2008-10-01T10:09:01Z 2008-10-01T10:09:01Z <ul> <li>For accessing Office documents there exists <a href="http://poi.apache.org/" rel="nofollow">POI</a></li> <li>For creating PDF documents there exists <a href="http://www.lowagie.com/iText/" rel="nofollow">iText</a></li> </ul> <p>Both are free imho.</p> http://stackoverflow.com/questions/156915/good-way-to-create-pdf-from-office-documents-in-java/156987#156987 1 Answer by Shane MacLaughlin for Good way to create PDF from Office documents in Java Shane MacLaughlin 2008-10-01T10:21:16Z 2008-10-01T10:21:16Z <p>You could try using <a href="http://www.cutepdf.com/" rel="nofollow">Cute PDF writer</a> which is basically a free PDF printer driver, and will work with any printing APIs.</p> http://stackoverflow.com/questions/156915/good-way-to-create-pdf-from-office-documents-in-java/157123#157123 3 Answer by Sindri for Good way to create PDF from Office documents in Java Sindri 2008-10-01T11:04:51Z 2008-10-01T11:04:51Z <p>FYI looks like <a href="http://www.artofsolving.com/opensource/jodconverter" rel="nofollow">http://www.artofsolving.com/opensource/jodconverter</a> nicely encapsulates all the OpenOffice server communication. This is the solution I'm pursuing at the moment.</p> http://stackoverflow.com/questions/156915/good-way-to-create-pdf-from-office-documents-in-java/330381#330381 1 Answer by Shervin for Good way to create PDF from Office documents in Java Shervin 2008-12-01T09:39:07Z 2008-12-01T09:39:07Z <p>The problem with Jodconvertor is that the project ended in Sep 2006. So I am not even sure it will work and run on OpenOffice 3.x. If anyone can confirm this, that would be great.</p>