我是JSf
Tomahawk Technology 的新手。在应用程序中,我有一个数据表,我想通过单击按钮将数据表中的信息存储为 PDF 格式,Tomahawk
并使用SandBox
.Kindly 帮助。
问问题
438 次
3 回答
1
更好的是,使用JasperReports。它在后台使用 iText 将报告导出为 PDF。
于 2010-02-25T10:47:29.280 回答
0
正如您所提到的,您正在使用沙箱,使用沙箱exporterActionListener
中的组件将数据从数据表导出为 PDF。你需要 itext-0.99.jar 使用相同的版本
代码示例
<!-- sandbox tag library declaration -->
<%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s"%>
.
. <!-- your data Tabel will be here -->
.
.
<h:commandButton value="Export as pdf">
<s:exporterActionListener for="Id of the Data Tabel" fileType="PDF" />
</h:commandButton>
于 2010-03-26T11:38:44.020 回答
0
为此,您可能需要iText。
另请参阅 - http://www.junlu.com/msg/281869.html
于 2010-02-25T10:43:21.193 回答