Need a simple open source solution to export 2D table data to PDF and Word

guys. In our project, we need to add a new function, which is to export some test results data to PDF and Word files for the user. The data structure of the test results in our system, as a rule, is a simple 2D table (some of them can be a little complicated, which has cell consolidation). Is there a stable and mature open source Java solution? Or should we use any reporting solution, such as BIRT (but we believe that such a solution may be too heavy for this feature)? Since the deadline for this project is tight in order to save time for investigation, I am posting a question here and want to get some suggestions. Any suggestion would be much appreciated, thanks. By the way, our project is a Swing application.

+3
source share
2 answers

JasperReports allows export to PDF and DOC, it can be easier than using POI and iText.

+2
source

After a short time, and this is a new feature, you can record by writing a comma-delimited file with a name acceptable to Excel. At a later time, implement a more robust solution using the Apache POI or something similar that identifies your research.

+1
source

All Articles