我是JSf
和Tomahawk Technology的新手。在应用程序中我有一个数据表,我希望使用Tomahawk
和SandBox
点击按钮将数据表中的信息存储为PDF格式。请帮助。
答案 0 :(得分:1)
更好的是,使用JasperReports。它使用场景后面的iText将报告导出为PDF。
答案 1 :(得分:0)
您可能需要iText。
另见 - http://www.junlu.com/msg/281869.html
答案 2 :(得分: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>