I am working on a project, one feature is to generate PDF format of invoices in Java. There seems to be many solutions, but I don't know which one is the best for invoices.
Please advise,
Thanks.
|
I am working on a project, one feature is to generate PDF format of invoices in Java. There seems to be many solutions, but I don't know which one is the best for invoices. Please advise, Thanks.
| ||||
|
feedback
|
|
iText is a really good Java / PDF API. http://itextpdf.com/ | |||||||
feedback
|
|
As Dante617 already mentioned, iText is a good option to generate PDF with Java. But you have to be very careful while creating your PDFs since you do most of the filling and layout by hand. I suppose your data for an invoice comes from a database or other datasource, so reporting tools/engines would also be a viable possibility. There are two big, open source reporting engines:
| |||
|
feedback
|
|
If you want to write less code and do more in templates, you might want to look at JODReports and Docmosis. | |||
|
feedback
|
|
iText is probably the best PDF library for Java, but if you cannot live with their license there is also Apache PDFBox. | |||
|
feedback
|