zet ucu
Posts: 4
Nickname: zett
Registered: Jan, 2009
|
|
Re: Urgent!!! help needed to convert JSP to PDF
|
Posted: Jan 15, 2009 9:27 AM
|
|
A solution here - convert html to pdf: dancrintea.ro/html-to-pdf/ (check page middle for example, after php)
Besides HTML to PDF, there are also possible other convertions: doc --> pdf, html, txt, rtf xls --> pdf, html, csv ppt --> pdf, swf
Code example:
import officetools.OfficeFile;
FileInputStream fis = new FileInputStream(new File("test.html")); FileOutputStream fos = new FileOutputStream(new File("test.pdf"));
OfficeFile f = new OfficeFile(fis,"localhost","8100", true); f.convert(fos,"pdf");
|
|