| Author |
Issue with jasper reports export
|
Karthikeyan Kannan
Greenhorn
Joined: Aug 25, 2004
Posts: 1
|
|
Hi , I am having issues with export report to stream with XL format or HTML format. Though I could do the same with PDF format. // PDF Stream JasperExportManager.exportReportToPdfStream(jasperPrint, response.getOutputStream()); // XLS stream JRXlsExporter exporter = new JRXlsExporter(); exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint); exporter.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.TRUE); // exporter.exportReportToStream(); -- this would raise error As the above method is a protected method, we cannot use the same. Is there any way to overcome this. Thanks in Advance.
|
 |
 |
|
|
subject: Issue with jasper reports export
|
|
|