2011-12-23 31 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的客户端电脑。