2010-02-25 57 views

回答

1

更好的是,使用JasperReports。它使用背後的iText將報告導出爲PDF。

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>