如何使用 servlet 和 JSP 显示 PDF 文件?
谁能告诉我如何使用 servlet 和 JSP 显示存储在我的数据库中的 PDF 文件?是否有需要导入的特定 jar 文件?
Can anyone tell how to display a PDF file which is stored in my database using servlets and JSP? Are there any specific jar files to be imported?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需从数据库中将其作为
InputStream
获取,并将其沿着一组正确的标头写入响应的OutputStream
即可。以下是假设您使用 JDBC 与数据库交互的代码片段。当映射到
/pdfservlet
的url-pattern
时,您只需使用链接
或通过 < code>
您不需要任何额外的库。完整的启动示例可以在此处找到。
Just get it as
InputStream
from DB and write it toOutputStream
of the response along a correct set of headers. Here's a snippet assuming you're using JDBC to interact with DB.When mapped on an
url-pattern
of for example/pdfservlet
, then you can just call the servlet using<a>
linkor by
<object>
if you want to embed it in HTML.You don't need any additional libraries. A complete kickoff example can be found here.