PDF下载功能

发布于 2024-12-11 04:31:47 字数 192 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

说谎友 2024-12-18 04:31:47

如果我没记错的话,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文