Convert Jsp To Pdf Itext



  1. Convert Jsp To Pdf Using Itext
  2. Convert Jsp File To Pdf
  3. Convert Jsp Page To Pdf Using Itext

I tried iText by first reading a PDF and then re-creating the PDF with the PDF version set 10 1.4 and conformance set to PDF-1A. I validated the generated PDF using an external tool but it gave some issues. Following is the snippet of the code. Using iText HTMLWorker, you can produce PDF version of an HTML document. The document must be simple. Many things like FORM elements or external images are not supported. Done with iText 5.4.1.

Jsp
Ranch Hand
posted 9 years ago
  • Optional 'thank-you' note:
Hi experts, I am trying to convert my jsp/html form to pdf once a button is clicked. how do I do that???
sometimes my jsp form has logo with the form , does that affect conversion
is there any program can do that for me , please help me urgently
thanks a lot
Rancher
posted 9 years ago
  • Optional 'thank-you' note:
You can use the iText library to create PDFs. If the HTML page consists of CSS-styled XHTML, then the FlyingSaucer library is also an option.
Ranch Hand
posted 9 years ago
  • Optional 'thank-you' note:
Pdf

Ulf Dittmer wrote:You can use the iText library to create PDFs. If the HTML page consists of CSS-styled XHTML, then the FlyingSaucer library is also an option.


thanks for reply , I don't know how to use FlyingSaucer library , could you please just an example of it .
I have found three examples of conversion but still could work for me the programs , once I open the pdf file. what shall I do??
these are the links
http://www.java2s.com/Tutorial/Java/0419__PDF/ParsingHtml.htm
http://www.java2s.com/Tutorial/Java/0419__PDF/HtmlParserfromiText.htm
http://www.java2s.com/Tutorial/Java/0419__PDF/ParsingHtmlSnippets.htm
and aonther example is below

I have error here :
pdfDocument.add(new Paragraph(org.apache.commons.io.FileUtils.readFileToString(file)));
error is :
readFileToString(java.io.File,java.lang.String) in org.apache.commons.io.FileUtils cannot be applied to (java.io.File)
what is the solution ?? , I am using commons-io-2.0.1.jar for it. But still error available.
thanks a lot
Rancher
posted 9 years ago
  • Optional 'thank-you' note:

I don't know how to use FlyingSaucer library , could you please just an example of it .


Convert Jsp To Pdf Using Itext

Your first stop for information should always be the home page. The FlyingSaucer site links to a couple of introductory articles, and has a user guide available for download.

error is : readFileToString(java.io.File,java.lang.String) in org.apache.commons.io.FileUtils cannot be applied to (java.io.File)


Not sure what's happening, the code compiles fine for me when linked against iText 2.1.7 and Commons IO 2.0.1 (after fixing the missing import of the Rectangle class)
Ranch Hand
posted 9 years ago
  • Optional 'thank-you' note:
Thanks Ulf Dittmer
I got my problem I was useing two common jars together the new and the old one , so removing the old solve the problem , but I discoved that the pdf file is only the source
code of my html page. That is not what I am looking for , Basically I am trying to generate pdf file once use clicks a print button. User will fill form first on page , then when user
clicks print , all user information will be inserted in pdf as form so it can be printed then .what shall I do !!!
Rancher
posted 9 years ago
  • Optional 'thank-you' note:

Convert Jsp File To Pdf

what shall I do !!!


Jsp Please restrict yourself to single punctuation signs; it's sufficient. What's more, question are ended with question marks, not exclamation marks.
Convert Jsp To Pdf Itext

Convert Jsp Page To Pdf Using Itext

You can submit the form to the server, create the PDF there using iText, and then either a) stream the PDF as response back to the client, or b) store it on the server and include a link to it in the response page.



Comments are closed.