up vote 8 down vote favorite
3
share [g+] share [fb]

At the moment, I'm creating an XML file in Java and displaying it in a JSP page by transforming it with XSL/XSLT. Now I need to take that XML file and display the same information in a PDF. Is there a way I can do this by using some kind of XSL file?

I've seen the iText Java-PDF library, but I can't find any way to use it with XML and a stylesheet.

Any assistance would be much appreciated. Thanks in advance!

link|improve this question

Now there is iText® XMLWorker, default implementation is HTML/CSS to pdf – Redlab May 28 '11 at 8:23
feedback

9 Answers

up vote 11 down vote accepted

You can use XSL Formatting objects. Here are some good articles on how to do it.

link|improve this answer
feedback

You can also check apache project here

link|improve this answer
feedback

BIRT has a GUI for Eclipse that lets you define the PDF from XML, DB, CSV, etc etc.

link|improve this answer
feedback

You might want to look at the XSL-FO libraries that are out there that can do PDF creation as a transformation. I'll try to find a link.

link|improve this answer
feedback

Try the xhtmlrenderer project. See the article "Generating PDFs for Fun and Profit with Flying Saucer and iText".

link|improve this answer
feedback

Use JasperReports. You can either pull the data from Database or XML. You can export to many formats : pdf, excel, html, etc...

link|improve this answer
feedback

Coming in late, you can create a static PDF with Adobe's designer with editable fields, then create a matching XDP XML document.

link|improve this answer
feedback

Apply XSL to your XML and transform it to HTML. Then you pass this HTML to Corda Highwire. This will give you the required PDF.

link|improve this answer
feedback

I would recommend using Apache FOP and J4L FO Designer to create the PDF layout without getting involved in the details of XSL-FO

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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