Intro : JasperReports' reports are defined in XML files, which by convention have an extension of jrxml. A typical jrxml file contains the following elements: * <jasperReport> - the root element. All of the elements are optional, except for the root <?xml version="1.0"?> A jrxml file needs to be compiled only once, but for this simple example it is compiled every time the application is executed. Before a report can be generated, it needs to be "filled" with data, this is achieved by calling the Finally, in our example, we export the report to a PDF file, this way it can be read by Adobe Acrobat, XPDF, Evince, or any other PDF reader, the line that accomplishes this in our example is
JasperReports is a very popular open source (LGPL) reporting library written in Java. Unfortunately it is not very well documented and I had a hard time coming up with a simple report. After some research, I was able to generate a simple report, this article summarizes what needs to be done to get started with JasperReports. See Resources for information on how to find additional information and documentation about JasperReports.Getting Started
* <title> - its contents are printed only once at the beginning of the report
* <pageHeader> - its contents are printed at the beginning of every page in the report.
* <detail> - contains the body of the report.
* <pageFooter> - its contents are printed at the bottom of every page in the report.
* <band> - defines a report section, all of the above elements contain a band element as its only child element.jasperReport
element. Here is an example jrxml file that will generate a simple report displaying the string "Hello World!"
<!DOCTYPE jasperReport
PUBLIC "-//JasperReports//DTD Report Design//EN"
"http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
<jasperReport name="Simple_Report">
<detail>
<band height="20">
<staticText>
<reportElement x="180" y="0" width="200" height="20"/>
<text><![CDATA[Hello World!]]></text>
</staticText>
</band>
</detail>
</jasperReport>
For this simple example, I omitted the optional <title>, <pageHeader> and <pageFooter> elements. The <staticText> element, unsurprisingly, displays static text on the report, as can be seen, it contains a single <text> element defining the text that will be displayed.
jrxml files need to be "compiled" into a binary format that is specific to JasperReports, this can be achieved by calling the compileReport() method on the net.sf.jasperreports.engine.JasperCompileManager class. There are several overloaded versions of this method, in our example, we will use the one that takes a single String parameter, consult the JasperReport documentation for details on the other versions of the method.public class JasperReportsIntro
{
public static void main(String[] args)
{
JasperReport jasperReport;
JasperPrint jasperPrint;
try
{
jasperReport = JasperCompileManager.compileReport(
"reports/jasperreports_demo.jrxml");
jasperPrint = JasperFillManager.fillReport(
jasperReport, new HashMap(), new JREmptyDataSource());
JasperExportManager.exportReportToPdfFile(
jasperPrint, "reports/simple_report.pdf");
}
catch (JRException e)
{
e.printStackTrace();
}
}
}fillReport()
method on the net.sf.jasperreports.engine.JasperFillManager
class. Again, there are several overloaded versions of the fillReport()
method, here we will use one that takes three parameters, an instance of net.sf.jasperreports.engine.JasperReport
, a java.util.HashMap
containing any parameters passed to the report, and an instance of a class implementing the net.sf.jasperreports.engine.JRDataSource
interface. The line that accomplishes this in our example above is jasperPrint = JasperFillManager.fillReport( jasperReport, new HashMap(), new JREmptyDataSource());
Since our simple report takes no parameters, we pass an empty HashMap
as the second parameter, and an instance of net.sf.jasperreports.engine.JREmptyDataSource
as the third parameter. JREmptyDataSource
is a convenience class included with JasperReports, it is basically a DataSource with no data. JasperExportManager.exportReportToPdfFile(
The parameters are self-explanatory.
jasperPrint, "reports/simple_report.pdf");Conclusion
JasperReports is a very good and popular open source reporting engine, this guide provides enough information to get started with JasperReports.
Getting Started With JasperReports
Labels: Jasper Reports
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment