PDF下载功能
我正在使用 spring mvc 和 jsp 。我想为我在 jsp 呈现的视图中看到的文章提供下载 pdf 功能。我希望 pdf 具有与 jsp 视图相同的外观和感觉(当然没有页眉和页脚)。实现此功能的最简单且最好的方法是什么?我知道我可以将 itext 库用于 AbstractPdf 视图,但这意味着我需要创建单元格和表格。有没有更简单的方法可以做到这一点? 谢谢。
I'm using spring mvc with jsp. I want to give download to pdf functionality for an article which I see in the view rendered by the jsp. I want to have a same look and feel in the pdf as I have in the jsp view(without the header and footers ofcourse). What is the simplest and the best way to achive this functionality? I'm aware that I can use itext library for AbstractPdf view but that would mean I need to create cell and table. Is there any easier way to do that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话,iText 有一种渲染 HTML 的方法。
因此,您需要做的是创建没有页眉和页脚的 HTML 内容,然后将其放入 iText 中。
HTML 到 PDF:
@see 使用 itext 将 HTML 转换为 PDF
JSP 到字符串:
@see 将 JSP 渲染为字符串
When I remember right, then iText has a way to render HTML.
So what you need to do, is create the HTML content without header and footer, and then put this in iText.
HTML to PDF:
@see Using itext to convert HTML to PDF
JSP to String:
@see rendering JSP to a string