public final class JasperExportManager
extends java.lang.Object
For exporting to XLS and CSV format or for using special exporter parameters, the specific exporter class should be used directly.
JasperPrint,
JRHtmlExporter,
JRPdfExporter,
JRXmlExporter,
JRXlsExporter,
JRCsvExporter| Modifier and Type | Method and Description |
|---|---|
static void |
exportReportToHtmlFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Exports the generated report object received as parameter into HTML format,
placing the result into the second file parameter.
|
static java.lang.String |
exportReportToHtmlFile(java.lang.String sourceFileName)
Exports the generated report file specified by the parameter into HTML format.
|
static void |
exportReportToHtmlFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into HTML format,
placing the result into the second file parameter.
|
static byte[] |
exportReportToPdf(JasperPrint jasperPrint)
Exports the generated report object received as parameter into PDF format and
returns the binary content as a byte array.
|
static void |
exportReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into PDF format,
the result being placed in the second file parameter.
|
static java.lang.String |
exportReportToPdfFile(java.lang.String sourceFileName)
Exports the generated report file specified by the parameter into PDF format.
|
static void |
exportReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into PDF format,
the result being placed in the second file parameter.
|
static void |
exportReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Exports the generated report read from the supplied input stream into PDF format and
writes the results to the output stream specified by the second parameter.
|
static void |
exportReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Exports the generated report object received as first parameter into PDF format and
writes the results to the output stream specified by the second parameter.
|
static java.lang.String |
exportReportToXml(JasperPrint jasperPrint)
Exports the generated report object supplied as parameter into XML format
and returs the result as String.
|
static void |
exportReportToXmlFile(JasperPrint jasperPrint,
java.lang.String destFileName,
boolean isEmbeddingImages)
Exports the generated report object received as parameter into XML format,
placing the result into the second file parameter.
|
static java.lang.String |
exportReportToXmlFile(java.lang.String sourceFileName,
boolean isEmbeddingImages)
Exports the generated report file specified by the parameter into XML format.
|
static void |
exportReportToXmlFile(java.lang.String sourceFileName,
java.lang.String destFileName,
boolean isEmbeddingImages)
Exports the generated report file specified by the first parameter into XML format,
placing the result into the second file parameter.
|
static void |
exportReportToXmlStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Exports the generated report object read from the supplied input stream into XML format,
and writes the result to the output stream specified by the second parameter.
|
static void |
exportReportToXmlStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Exports the generated report object supplied as the first parameter into XML format,
and writes the result to the output stream specified by the second parameter.
|
public static java.lang.String exportReportToPdfFile(java.lang.String sourceFileName)
throws JRException
*.pdf extension and it is located in the same directory as the source file.sourceFileName - source file containing the generated reportJRExceptionJRPdfExporterpublic static void exportReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName)
throws JRException
sourceFileName - source file containing the generated reportdestFileName - file name to place the PDF content intoJRExceptionJRPdfExporterpublic static void exportReportToPdfFile(JasperPrint jasperPrint, java.lang.String destFileName) throws JRException
jasperPrint - report object to exportdestFileName - file name to place the PDF content intoJRExceptionJRPdfExporterpublic static void exportReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
throws JRException
inputStream - input stream to read the generated report object fromoutputStream - output stream to write the resulting PDF content toJRExceptionJRPdfExporterpublic static void exportReportToPdfStream(JasperPrint jasperPrint, java.io.OutputStream outputStream) throws JRException
jasperPrint - report object to exportoutputStream - output stream to write the resulting PDF content toJRExceptionJRPdfExporterpublic static byte[] exportReportToPdf(JasperPrint jasperPrint) throws JRException
jasperPrint - report object to exportJRExceptionJRPdfExporterpublic static java.lang.String exportReportToXmlFile(java.lang.String sourceFileName,
boolean isEmbeddingImages)
throws JRException
*.jrpxml extension and it is located in the same directory as the source file.
When exporting to XML format, the images can be either embedded in the XML content itself using the Base64 encoder or be referenced as external resources. If not embedded, the images are placed as distinct files inside a directory having the same name as the XML destination file, plus the "_files" suffix.
sourceFileName - source file containing the generated reportisEmbeddingImages - flag that indicates whether the images should be embedded in the
XML content itself using the Base64 encoder or be referenced as external resourcesJRExceptionJRPdfExporterpublic static void exportReportToXmlFile(java.lang.String sourceFileName,
java.lang.String destFileName,
boolean isEmbeddingImages)
throws JRException
If not embedded into the XML content itself using the Base64 encoder, the images are placed as distinct files inside a directory having the same name as the XML destination file, plus the "_files" suffix.
sourceFileName - source file containing the generated reportdestFileName - file name to place the XML representation intoisEmbeddingImages - flag that indicates whether the images should be embedded in the
XML content itself using the Base64 encoder or be referenced as external resourcesJRExceptionJRPdfExporterpublic static void exportReportToXmlFile(JasperPrint jasperPrint, java.lang.String destFileName, boolean isEmbeddingImages) throws JRException
If not embedded into the XML content itself using the Base64 encoder, the images are placed as distinct files inside a directory having the same name as the XML destination file, plus the "_files" suffix.
jasperPrint - report object to exportdestFileName - file name to place the XML representation intoisEmbeddingImages - flag that indicates whether the images should be embedded in the
XML content itself using the Base64 encoder or be referenced as external resourcesJRExceptionJRPdfExporterpublic static void exportReportToXmlStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
throws JRException
inputStream - input stream to read the generated report object fromoutputStream - output stream to write the resulting XML representation toJRExceptionJRPdfExporterpublic static void exportReportToXmlStream(JasperPrint jasperPrint, java.io.OutputStream outputStream) throws JRException
jasperPrint - report object to exportoutputStream - output stream to write the resulting XML representation toJRExceptionJRPdfExporterpublic static java.lang.String exportReportToXml(JasperPrint jasperPrint) throws JRException
jasperPrint - report object to exportJRExceptionJRPdfExporterpublic static java.lang.String exportReportToHtmlFile(java.lang.String sourceFileName)
throws JRException
*.html extension and it is located in the same directory as the source file.
The images are placed as distinct files inside a directory having the same name
as the HTML destination file, plus the "_files" suffix.sourceFileName - source file containing the generated reportJRExceptionJRHtmlExporterpublic static void exportReportToHtmlFile(java.lang.String sourceFileName,
java.lang.String destFileName)
throws JRException
The images are placed as distinct files inside a directory having the same name as the HTML destination file, plus the "_files" suffix.
sourceFileName - source file containing the generated reportdestFileName - file name to place the HTML content intoJRExceptionJRPdfExporterpublic static void exportReportToHtmlFile(JasperPrint jasperPrint, java.lang.String destFileName) throws JRException
The images are placed as distinct files inside a directory having the same name as the HTML destination file, plus the "_files" suffix.
jasperPrint - report object to exportdestFileName - file name to place the HTML content intoJRExceptionJRPdfExporter© 2001-2010 Jaspersoft Corporation www.jaspersoft.com