I am using Birt 4.4 and my html report works fine, but the xls and pdf files are deleted. The output format is not supported.
org.eclipse.birt.report.engine.api.EngineException: The output format xsl is not supported. at org.eclipse.birt.report.engine.api.impl.EngineTask.setupRenderOption(EngineTask.java:2031) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.doRun(RunAndRenderTask.java:96)
I tried setting the output format to xls_spudsoft and emitterID , but no luck
Here is the code
EXCELRenderOption xlsOptions = new EXCELRenderOption(options); xlsOptions.setEmitterID("uk.co.spudsoft.birt.emitters.excel.XlsEmitter"); xlsOptions.setOutputFormat("xls_spudsoft"); response.setHeader("Content-Disposition", "attachment; filename=\"" + reportName + "\""); xlsOptions.setOutputStream(response.getOutputStream());
any ideas?
thanks
source share