If you want an alternative to HTML reports, then you could also try outputing to Word/Excel. This can be simply achieved by setting the response content type in your
servlet ...
response.setContentType("application/vnd.ms-excel"); // for Excel
or
response.setContentType("application/msword"); // for
word documents.
Have a look here (this is where I got the idea)
http://pdf.coreservlets.com/ (Chapter 11)
good luck...