使用JSF中的Tomahawk从网页获取PDF格式的数据?

时间:2010-02-25 10:36:35

标签: java jsf sandbox tomahawk

我是JSf和Tomahawk Technology的新手。在应用程序中我有一个数据表,我希望使用TomahawkSandBox点击按钮将数据表中的信息存储为PDF格式。请帮助。

3 个答案:

答案 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>