vote up 2 vote down star
1

Any way to create PDF dynamically against receiving texts and images.

flag

78% accept rate
2  
When you Googled for "creating PDF from servlet" what did you learn? – S.Lott Aug 19 at 11:24
2  
@S.Lott: theres no need for that rudeness. – cletus Aug 19 at 11:28
@cletus: I'm asking what they saw so that I do not repeat something they already know. – S.Lott Aug 19 at 11:38
4  
@S.Lott - I'm calling... "bluff" – Marc Gravell Aug 19 at 12:01
@Marc Gravell: either way (bluff or no bluff) I didn't think that the question was rude. For example, I didn't provide the lmgtfy.com/?q=creating+PDF+from+servlet link. – S.Lott Aug 19 at 12:20
show 2 more comments

7 Answers

vote up 3 vote down check

iText and JasperReports are great to create pdf reports via Java.

With iReport you can easily create the jasper files needed for this. Very easy to use tool and helped me a lot when I needed to create some pdf reports.

link|flag
vote up 4 vote down

You can use the iText library.

If you're generating reports then JasperReports can generate PDF output.

link|flag
vote up 1 vote down

We use Flying Saucer.

link|flag
Flying Saucer...Is it a modified form of ITEXT – cdb Aug 19 at 11:34
1  
@Biju: Flying Saucer is not modified iText at all. You can read their web site to see that they are an XHTML rendering engine that makes it very easy to create PDF's from XHTML. – S.Lott Aug 19 at 11:39
Flying Saucer provides option to convert xhtml to pdf using iText. – Madhu Sep 12 at 14:59
vote up 1 vote down

There's a ton of ways to generate PDFs on the fly.

In Java, you can use the iText library. If you wanted to use Jython, you could use reStructuredText and possibly rst2pdf. Or you could just generate LaTeX files on the fly and make a system call to LaTeX.

link|flag
vote up 1 vote down

There are several libraries for working with PDF in Java, for example iText and Apache PDFBox.

link|flag
vote up 0 vote down

Hi,

I work with apache fop and it works amazingly well, it's well supported and it's based on XSL-FO standard.

link|flag
vote up 0 vote down

If you're doing reports based on for example SQL queries then iReport is a good choice although it's sometimes a bit heavyweight. On the other hand if you're going to produce something that's more about presentation and design, like a product sheet or a brochure then my experience is that it's alot easier to first generate html and css and then use it to generate a PDF.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.