Jasper Reports
JasperReports is an open source reporting application programming interface (API) written in Java. JasperReports can export to screen, printer, PDF, HTML, Microsoft Excel, RTF, ODT, comma-separated values (CSV), and XML formats.
JasperReports is closely related to iReport, which is a tool for editing files used by the JasperReports engine.
How JasperReports Works
There is often some confusion about the relationship between JasperReports, iReport, .jrxml files, and .jasper files. Generating a report takes the following general steps:
- Typically, reports are designed using iReport.
- iReport saves the source code for reports in XML format with a
.jrxmlfile extension. - Either iReport or JasperReports compiles the
.jrxmlfiles to.jasperfiles. - The
.jasperfiles are loaded by JasperReports. - JasperReports fills the compiled report with data from a given data source (such as a database result set).
- JasperReports exports the completed report to a specified document format.
Report Design
iReport is an integrated development environment (IDE) for designing reports. Follow the Designing a Report guide for an example on how to create a report. In addition to iReport, JasperSoft has also released a stand alone product called JasperSoft Studio. A JasperSoft Studio plugin for Eclipse is also available.