如何在Java应用程序中运行BIRT报告?

时间:2014-08-13 03:44:33

标签: java eclipse birt

我在eclipse上设计了BIRT的报告,我可以从运行按钮运行它如何运行它是java代码?

1 个答案:

答案 0 :(得分:0)

首先,需要完成配置部分。 将运行时web-inf\lib目录中的所有jar包含到您自己的webapp\web-inf\lib目录中。

然后在你的web.xml中配置servlet的部分是这样的。

<servlet>
    <servlet-name>EngineServlet</servlet-name>
    <servlet-class>org.eclipse.birt.report.servlet.BirtEngineServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>EngineServlet</servlet-name>
    <url-pattern>/output</url-pattern>
</servlet-mapping>

查看者标记库定义:

<jsp-config>
    <taglib>
        <taglib-uri>/birt.tld</taglib-uri>
        <taglib-location>/WEB-INF/tlds/birt.tld</taglib-location>
    </taglib>
</jsp-config>

web.xml中还可以包含其他设置,用于控制Web查看器的行为。 少数如下:

   BIRT_VIEWER_LOCALE:This setting sets the default locale for the Web Viewer.
    BIRT_VIEWER_MAX_ROWS: Specifies the maximum number of rows to retrieve from a dataset.
    BIRT_RESOURCE_PATH: This setting specifies the resource path used by report engine. The resource path is used to search for libraries, images, and properties files used by a report. If this setting is left blank, resources will be searched for in the same directory as the report.

其他可以从BIRT门户网站获悉。  以下是JSP页面中的示例:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
                    pageEncoding="ISO-8859-1"%>
                    <%@ taglib uri="/birt.tld" prefix="birt" %>
                    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
                       "http://www.w3.org/TR/html4/loose.dtd">
                    <html>
                    <head>
                    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
                    <title>Insert title here</title>
                    </head>
                    <body>
                    <birt:viewer id="birtViewer" reportDesign="myReport.rptdesign"
                    pattern="frameset"
                    height="450"
                    width="700"
                    format="html">
                    </birt:viewer>
                    </body>
                    </html>

在网络应用中为您的报告提供一个菜单,您的报告就可以运行了。 : - )