Richfaces 数据表 PDF 导出
我正在使用 Seam 2.2.1
来完成我的一个小项目。我知道有一个针对 richfaces:dataTable
的 Excel 导出功能,但是 PDF 也有类似的功能吗?我真的不想用 iText
编写 PDF 导出。
问候
I'm using Seam 2.2.1
for a little project of mine. I know there is a excel export for richfaces:dataTable
but is there something like this for PDFs too? I don't really want to write a PDF export with iText
.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Seam PDF
它确实在内部使用了 iText,但您不必编写任何 iText 代码。
创建一个链接,该链接采用与您用于迭代 RichFaces 数据表的相同列表。
像这样的东西。
记得把所有东西都包裹在一个
You can easily export the generated HTML to PDF with Seam PDF
It does use iText internally, but you don't have to write any iText code.
Create a link that takes the same List you are using iterate the RichFaces datatable.
Something like this.
Remember to wrap everything inside a
如果您不坚持使用
,您可以尝试
(primefaces),它内置了 PDF 导出功能。请参阅此处否则,您可以使用 JasperReports 更轻松地对导出的 PDF 进行 GUI 设计。
If you don't insist on using
<rich:dataTable>
, you can try<p:dataTable>
(primefaces) which has built-in export for PDF. See hereOtherwise you can use JasperReports for easier, GUI design of your exported PDF.