My team came across a new solution which allow conversion of ms office formats, especially doc and xls to pdf. Solution is provided by this guy on this page: http://www.dancrintea.ro/xls-to-pdf/
How it works:
Are you using a similar solution in Java(or even in PHP)?
I am currently trying to find more solutions and to compare them for quality and speed.
Thanks.
How it works:
Code:
import officetools.OfficeFile; // from officetools.jar
FileInputStream fis = new FileInputStream(new File("test.doc" ));
FileOutputStream fos = new FileOutputStream(new File("test.pdf" ));
OfficeFile f = new OfficeFile(fis,"localhost","8100", false);
f.convert(fos,"pdf" );
I am currently trying to find more solutions and to compare them for quality and speed.
Thanks.
Comment