Is there a simple way to create reports in Java without using a database (like SQL)?
What I want to do is to get a number of strings in an ArrayList of objects and then put them on a printable report. Also, i want to put values from a comma-separated file to the printable report. I’ve found this JavaDoc but, based from what I’ve understood, it’s not possible to design the report using this. (Correct me if I’m wrong)
Try JasperReports, it’s the most common open source tool for reporting in the Java world, and you can create reports from multiple data sources, not only data bases.