birt 片段代碼

protected IReportEngine reportEngine = null;

protected IReportRunnable design = null;

design = reportEngine.openReportDesign(reportFilePath);
task = reportEngine.createRunAndRenderTask(design);

task.addScriptableJavaObject("listBean",
pageList == null ? new ArrayList<Object[]>() : pageList);

HTMLRenderOption option = new HTMLRenderOption();
option.setOutputFormat(HTMLRenderOption.OUTPUT_FORMAT_HTML);
option.setOutputStream(response.getOutputStream());
task.setRenderOption(option);
task.run();

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章