Export to PDF Using Java or plain html

1.6k Views Asked by At

I am displaying few tables using HTML table tag and CSS . I am using Struts 2 and would like to include the "Export to PDF" functionality. Right now its just one page where i have to use this. Later one there will be one or two more page where i have to use this feature. I am Looking for some easy to implement available plugins or jar or anything that can be used to do that.

1

There are 1 best solutions below

2
On

There is a Java API for generating PDF.

Here it is: http://itextpdf.com/download.php

Call it from you Servlet or Struts Action, and use HttpServletRersponse.getOutputStream to direct the PDF document back to the browser.