struts2 jsp 搜索内容 pdf输出

使用struts2 在jsp 页面检索出来的数据 通过 pdf 输出  在网上搜索出来的一些答案了解,把pdf输出写在jsp页面上的话,比较的适用
现在一个数据字段 id;name;author;publish;time;isbn; page;content
在jsp 页面上按照
<thead>
    <tr>
    <th>ID</th>
       <th>名前</th>
       <th>作者</th>
       <th>出版社</th>
       <th>出版時間</th>
       <th>ISNB</th>
       <th>page</th>
       <th>内容提要</th>
    </tr>
    </thead>
   <tbody>
    <s:iterator value="availableItems"> 
   <tr>
         <th> <s:property value="id"/> </th>
         <th> <s:property value="name"/></th>
         <th> <s:property value="author"/></th>
         <th> <s:property value="publish"/></th>
         <th> <s:property value="time"/></th>
         <th><s:property value="isbn"/></th>
         <th><s:property value="page"/></th>
         <th><s:property value="content"/></th>
        </tr>
        </s:iterator>
   </tbody>
模式显示,并提供一个<s;submit>标签 来完成pdf输出  那需要怎么写?

注意了是适用struts2 数据是需要动态获得 都说在document.open();
document.close();直接书写要输出的数据 那怎么才能把动态搜索出的数据用pdf 输出呢?

使用itext 获得其他的都能给例子

你可能感兴趣的:(jsp,出版)