http://birtworld.blogspot.com/2010/06/birt-excel-output.html
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Java代码 //RunAndRender Task IReportRunnable design = null; design = engine.openReportDesign("Reports/myreport.rptdesign"); IRunAndRenderTask task = engine.createRunAndRenderTask(design); EXCELRenderOption options = new EXCELRenderOption(); options.setOutputFormat("xls"); options.setOutputFileName("output/resample/myxls.xls"); task.setRenderOption(options); task.run(); task.close(); //or Render Task IReportDocument document = null; document = engine.openReportDocument("output/resample/myreport.rptdocument"); EXCELRenderOption options = new EXCELRenderOption(); options.setOutputFormat("xls"); options.setOutputFileName("output/resample/xlsoutput.xls"); IRenderTask task = engine.createRenderTask(document); task.setRenderOption(options); task.render(); |
