2011-12-23 66 views

回答

2

是的,Word和Excel都支持birt引擎(2003和2007)。通過設置URL格式參數

HTMLRenderOption options = new HTMLRenderOption(); 
options.setOutputFormat("xls"); 

task.setRenderOption(options); 
1

從Tomcat,您可以在這些輸出使它:

HTML:

http://server:8080/birt/output?__report=myReport.rptdesign&__format=html 

你可以將它設置成報表引擎選項pdf:

http://server:8080/birt/output?__report=myReport.rptdesign&__format=pdf 

Word文檔:

http://server:8080/birt/output?__report=myReport.rptdesign&__format=doc 

的Excel:

http://server:8080/birt/output?__report=myReport.rptdesign&__format=xls 

最後兩個(DOC和XLS)不在線的頁面上呈現,它下載字的.doc或.xls的客戶端電腦。