Good way to create PDF from Office documents in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:40:26Zhttp://stackoverflow.com/feeds/question/156915http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/156915/good-way-to-create-pdf-from-office-documents-in-java3Good way to create PDF from Office documents in JavaSindri2008-10-01T09:56:28Z2008-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#1569461Answer by dhiller for Good way to create PDF from Office documents in Javadhiller2008-10-01T10:09:01Z2008-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#1569871Answer by Shane MacLaughlin for Good way to create PDF from Office documents in JavaShane MacLaughlin2008-10-01T10:21:16Z2008-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#1571233Answer by Sindri for Good way to create PDF from Office documents in JavaSindri2008-10-01T11:04:51Z2008-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#3303811Answer by Shervin for Good way to create PDF from Office documents in JavaShervin2008-12-01T09:39:07Z2008-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>