See: Description
Interface | Description |
---|---|
CommonExportConfiguration | |
CsvExporterConfiguration |
Interface containing settings used by the CSV exporters.
|
CsvMetadataExporterConfiguration |
Interface containing settings used by the metadata based CSV exporter.
|
CsvMetadataReportConfiguration |
Interface containing settings used by the metadata based CSV exporter.
|
CsvReportConfiguration |
Interface containing settings used by the CSV exporters.
|
DocxExporterConfiguration |
Interface containing settings used by the DOCX exporter.
|
DocxReportConfiguration |
Interface containing settings used by the DOCX exporter.
|
Exporter<I extends ExporterInput,IC extends ReportExportConfiguration,C extends ExporterConfiguration,O extends ExporterOutput> |
All document exporting in JasperReports is done through this interface.
|
ExporterConfiguration |
Instances of this class are used for configuring the behavior of exporters.
|
ExporterInput | |
ExporterInputItem | |
ExporterOutput | |
Graphics2DExporterConfiguration |
Interface containing settings used by the Graphics2D exporter.
|
Graphics2DExporterOutput | |
Graphics2DReportConfiguration |
Interface containing settings used by the Graphics2D exporter.
|
HtmlExporterConfiguration |
Interface containing settings used by the HTML exporters.
|
HtmlExporterOutput | |
HtmlReportConfiguration |
Interface containing settings used by the HTML exporters.
|
JsonExporterConfiguration |
Interface containing settings used by the JSON exporter.
|
JsonExporterOutput | |
JsonMetadataReportConfiguration |
Interface containing settings used by the JSON Metadata exporter.
|
JsonReportConfiguration |
Interface containing settings used by the JSON exporter.
|
OdsExporterConfiguration |
Interface containing settings used by the ODS exporter.
|
OdsReportConfiguration |
Interface containing settings used by the ODS exporter.
|
OdtExporterConfiguration |
Interface containing settings used by the ODT exporter.
|
OdtReportConfiguration |
Interface containing settings used by the ODT exporter.
|
OutputStreamExporterOutput | |
PdfExporterConfiguration |
Interface containing settings used by the PDF exporter.
|
PdfReportConfiguration |
Interface containing settings used by the PDF exporter.
|
PptxExporterConfiguration |
Interface containing settings used by the PPTX exporter.
|
PptxReportConfiguration |
Interface containing settings used by the PPTX exporter.
|
PrintServiceExporterConfiguration |
Interface containing settings used by the print service exporter.
|
PrintServiceReportConfiguration |
Interface containing settings used by the print service exporter.
|
ReportExportConfiguration |
Instances of this class are used for configuring the behavior of exporters.
|
RtfExporterConfiguration |
Interface containing settings used by the RTF exporter.
|
RtfReportConfiguration |
Interface containing settings used by the RTF exporter.
|
TextExporterConfiguration |
Interface containing settings used by the pure text exporter.
|
TextReportConfiguration |
Interface containing settings used by the pure text exporter.
|
WriterExporterOutput | |
XlsExporterConfiguration |
Interface containing settings used by the Excel exporters.
|
XlsMetadataExporterConfiguration |
Interface containing settings used by the Excel metadata exporters.
|
XlsMetadataReportConfiguration |
Interface containing settings used by the Excel metadata exporters.
|
XlsReportConfiguration |
Interface containing settings used by the Excel exporters.
|
XlsxExporterConfiguration |
Interface containing settings used by the XLSX exporter.
|
XlsxReportConfiguration |
Interface containing settings used by the XLSX exporter.
|
XmlExporterOutput |
Exception | Description |
---|---|
ExportInterruptedException |
exportReport()
method of the
Exporter
interface, and this method does not
receive any parameters when called.
The input data for an exporter comes in the form of one or more
JasperPrint
objects that must be exported to some other document format, along with other optional
export settings. These
JasperPrint
objects may be already in memory, come from the network through an input stream, or
reside in files on disk.
An exporter should be able to handle such a wide range of document sources. In fact, all
the exporter implementations that are shipped inside the library already do this. They all
extend the JRAbstractExporter
class, which
holds all the logic for dealing with the source documents that need to be exported inside
its defined setExporterInput(ExporterInput)
method.
As shown in the method signature,
all we need is an ExporterInput
instance that holds the necessary
input data. This object must implement the public List<ExporterInputItem> getItems()
method in order to obtain a list of ExporterInputItem
objects. Each
ExporterInputItem
object in the list contains a single
JasperPrint
object along with its related export
configuration settings.
ExporterOutput
setting to see whether it needs to
output the text content it produces to:
java.lang.StringBuffer
objectjava.io.Writer
objectjava.io.OutputStream
objectjava.io.File
objectjava.lang.String
file name
A binary exporter uses similar logic to find the output destination for the binary content
it produces. It checks generic exporter output settings in this exact order: java.io.OutputStream
,
java.io.File
, or file with a given java.lang.String
file name.
Special exporters that do not produce character or binary output but rather render the document directly on a target device have special export settings to configure their output.
Output settings for all built-in exporters can be set using the
setExporterOutput(O exporterOutput)
method inherited from their
JRAbstractExporter
parent class. The exporterOutput
argument must be an instance of ExporterOutput
interface.
public void setConfiguration(C configuration)
and
public void setConfiguration(RC configuration)
JRAbstractExporter
parent class. The first method accepts
an ExporterConfiguration
argument and applies settings per exporter.
The second one accepts a ReportExportConfiguration
and applies
settings per each exported report in a batch export.
Below are some examples of report configuration settings available in the
ReportExportConfiguration
class:
JasperPrint
,
JRAbstractExporter
Copyright © 2019 TIBCO Software Inc.. All rights reserved.