views:

104

answers:

2

I've written some Java code using the iText library to generate a PDF report, but specifying the layout seems very manual and takes a lot of time, re-running the code to test small adjustments.

Does anyone know of a report designer for PDFs which would work with Java? It doesn't have to be iText based, that's just what I'm using at the moment.

+1  A: 

Yes, JasperReports. It has the iReport visual designer. Also, the API is pretty straightforward.

As far as I know, BIRT is an alternative to JasperReports.

Have in mind that both are complex reporting solutions that support exporting to a number of different formats.

Bozho
A: 

http://www.jfree.org/ might be worth a look.

mark stephens