for a web application I need to implement a function that allowed to export a list in pdf??
How shall i do it? there is a class that allowed it ?
or if you have any suggestions please??
thank you in advance
|
|
|
You can use iText for that (its latest versions is under GNU Affero GPLv3 license). Have a look in this tutorial regarding what you need. |
|||
|
|
|
There's a free library called iText that you can use to generate PDFs (writing it on the fly to the HTTP response, or as a batch process) using Java. For simple things, it's quite easy to use, although the online documentation is virtually non-existant — instead, you support the project by buying the book iText in Action (one of the options is to buy a paper copy including a PDF ebook, so you're not waiting for the post). |
|||||||
|
|
|
A simple solution is PDFBox for Java, which has facilities for (among other things) creating PDFs. Since it sounds like your use case is really simply (output a list to a PDF), the prewritten utility TextToPDF might be all you need to use from PDFBox. |
|||
|
|
|
I think the best solution for free application reporting is JasperReports. You do not have anything to do with PDF, just define the data (a list of POJOS if you want), the fields, the layout and create output. PDF is one of the supported formats (this is based on iText). |
|||
|
|
|
I have recently used itext,if you are looking for various options itext having..you can have look at my example |
|||
|
|