zet ucu
Posts: 4
Nickname: zett
Registered: Jan, 2009
|
|
Re: Document conversion PDF to MS doc and vice versa
|
Posted: Jan 15, 2009 9:30 AM
|
|
MS to PDF is possible: dancrintea.ro/html-to-pdf/ Check page middle for example, after php.
Possible convertions: doc --> pdf, html, txt, rtf xls --> pdf, html, csv ppt --> pdf, swf
Example:
import officetools.OfficeFile; ... 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");
|
|