如何为 iText 生成的 PDF 显示“另存为”对话框?
当我发送 iText 在 servlet 中生成的 PDF 文件时,我想显示一个另存为对话框。我怎样才能实现这个目标?
I want to show a Save As dialog when I send the PDF file which is generated by iText in a servlet. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要让 servlet 将
Content-Disposition
标头设置为attachment
。这将强制出现“另存为”对话框,最终用户可以在其中选择位置。
请记住,最终用户可能已更改其浏览器设置以对 PDF 文件执行默认操作,例如始终在阅读器中显示它或始终将其保存在一些固定的地点。例如,在 Firefox 中,您可以通过“工具”>“工具”来控制它。选项>应用程序。不,您无法从服务器端更改此浏览器特定行为。
You need to let the servlet set the
Content-Disposition
header toattachment
.This will force a Save As dialogue where the enduser can choose the location.
Please keep in mind that the enduser might have changed its browser settings to take a default action on PDF files, for example to always show it in Reader or to always save it in some fixed location. In for example Firefox you can control this by Tools > Options > Applications. No, you cannot change this browser specific behaviour from the server side on.
好吧,我解决了我的问题!我在此页面上找到:
http://www.geek-tutorials.com/java/itext/servlet_jsp_output_pdf.php
方法是直接用 getOutputStream() 写入(不在文件路径中)并发送内容类型头!
原来如此简单...
Ok I solved my problem!! I found on this page :
http://www.geek-tutorials.com/java/itext/servlet_jsp_output_pdf.php
The method is to write directly with getOutputStream() (not in file path) and send content type header!
It was so simple...