The Artima Developer Community
Sponsored Link

Java Answers Forum
Urgent!!! help needed to convert JSP to PDF

3 replies on 1 page. Most recent reply: Jan 15, 2009 9:27 AM by zet ucu

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 3 replies on 1 page
harish

Posts: 2
Nickname: harish7447
Registered: Dec, 2003

Urgent!!! help needed to convert JSP to PDF Posted: Dec 19, 2003 3:12 AM
Reply to this message Reply
Advertisement
hello all

I have created a dynamic jsp[with chart images] page which contains tables with blue borders, static images, and dynamic tables and images[charts] created using loops with the data from the database. The jsp page is completely ready. no problem in that.

But the problem is that i need this jsp as a PDF on the fly. The PDF must have the same look and feel as the jsp page and the hyperlinks in the pdf must also work. is this possible? please reply immediately. very urgent. i have tried a lot of softwares, but none satisfies my requirements

regards
harish


harish

Posts: 2
Nickname: harish7447
Registered: Dec, 2003

Urgent!!! help needed to convert JSP to PDF Posted: Dec 19, 2003 3:26 AM
Reply to this message Reply
Sorry, i have missed the 2nd paragraph. it reads like:

but the problem is that i need this jsp as a PDF on the fly. The PDF must have the same look and feel as the jsp page and the hyperlinks are needed . is this possible? please reply immediately. very urgent.

regards

harish

Senthoorkumaran Punniamoorthy

Posts: 335
Nickname: senthoor
Registered: Mar, 2002

Re: Urgent!!! help needed to convert JSP to PDF Posted: Dec 22, 2003 1:31 AM
Reply to this message Reply
Did you try printing the JSP on the browser as a PDF?

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
Reply to this message Reply
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");

Flat View: This topic has 3 replies on 1 page
Topic: Document conversion PDF to MS doc and vice versa Previous Topic   Next Topic Topic: error java programming

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use