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.

link|improve this question

35% accept rate
feedback

4 Answers

iText is a really good Java / PDF API. http://itextpdf.com/

link|improve this answer
For open source, this is my hands down favorite. – Dean J Aug 11 '10 at 16:42
Are there any templates on the web? – leon Aug 11 '10 at 16:54
They've kind of made it to where the book "iText in Action" is really the place to go, but there are some good example sites out there: roseindia.net/java/itext/index.shtml vogella.de/articles/JavaPDF/article.html, javaboutique.internet.com/tutorials/iText, tutorials.jenkov.com/java-itext/getting-started.html, geek-tutorials.com/java/itext/itext_index.php They also do have their JavaDoc out there: api.itextpdf.com/index.html?overview-summary.html – Dante617 Aug 11 '10 at 17:28
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:

  1. JasperReports: Provides many possibilities and a graphical editor to create your templates, called iReport
  2. BIRT: Also many features and provides especially good integration into an Eclipse based environment.
link|improve this answer
feedback

If you want to write less code and do more in templates, you might want to look at JODReports and Docmosis.

link|improve this answer
feedback

iText is probably the best PDF library for Java, but if you cannot live with their license there is also Apache PDFBox.

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.