An Overview of Jasper Reports Scriptlet Class

Scriptlets are sequences of Java code that are executed every time a report event occurs. Values of report variables can be affected through scriptlets.

A scriptlet is a java class, which must extend either of the following classes:

net.sf.jasperreports.engine.JRAbstractScriptlet − This class contains a few abstract methods that must be overridden in every implementation. These methods are called automatically by JasperReports at the appropriate moment. The developer must implement all the abstract methods.

net.sf.jasperreports.engine.JRDefaultScriptlet − This class contains default empty implementations of every method in JRAbstractScriptlet. A developer is only required to implement those methods depends upon the needs of their project.

The following table lists some of the methods in the above class. These methods will be called by the report engine at the appropriate time, during the report filling phase.

Method Description

public void beforeReportInit() Called before report initialization

public void afterReportInit() Called after report initialization.

public void beforePageInit() Called before each page is initialized.

public void afterPageInit() Called after each page is initialized.

public void beforeColumnInit() Called before each column is initialized.

Any number of scriptlets can be specified per report. If no scriptlet is specified for a report, the engine still creates a single JRDefaultScriptlet instance and registers it with the built-in REPORT_SCRIPTLET parameter.

DataTerrain with years of experience and reliable experts is ready to assist. We have served more than 200 plus customers in the US and an additional 60 plus customers worldwide. We are flexible in working hours and do not need any long-term binding contracts.

Method   Description
public void beforeReportInit()   Called before report initialization
public void afterReportInit()   Called after report initialization.
public void beforePageInit()   Called before each page is initialized.
public void afterPageInit()   Called after each page is initialized.
public void beforeColumnInit()   Called before each column is initialized.