栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何在Java Web应用程序中将byte []作为pdf发送到浏览器?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何在Java Web应用程序中将byte []作为pdf发送到浏览器?

在action方法中,您可以通过JSF幕后获得HTTP
servlet响应

ExternalContext#getResponse()
。然后,您至少需要将HTTP
Content-Type
标头设置为
application/pdf
,并将HTTP
Content-Disposition
标头设置为
attachment
(当您要弹出 另存为 对话框时)或将HTTP
标头设置为(当您想让
inline
Web浏览器处理显示本身时)。最后,您需要确保
FacesContext#responseComplete()
稍后再打电话以避免
IllegalStateException
s飞来飞去。


开球示例:

public void download() throws IOException {    // Prepare.    byte[] pdfData = getItSomehow();    FacesContext facesContext = FacesContext.getCurrentInstance();    ExternalContext externalContext = facesContext.getExternalContext();    HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();    // Initialize response.    response.reset(); // Some JSF component library or some Filter might have set some headers in the buffer beforehand. We want to get rid of them, else it may collide.    response.setContentType("application/pdf"); // Check http://www.iana.org/assignments/media-types for all types. Use if necessary ServletContext#getMimeType() for auto-detection based on filename.    response.setHeader("Content-disposition", "attachment; filename="name.pdf""); // The Save As popup magic is done here. You can give it any filename you want, this only won't work in MSIE, it will use current request URL as filename instead.    // Write file to response.    OutputStream output = response.getOutputStream();    output.write(pdfData);    output.close();    // Inform JSF to not take the response in hands.    facesContext.responseComplete(); // important! Else JSF will attempt to render the response which obviously will fail since it's already written with a file and closed.}

就是说,如果您有可能将PDF内容作为

InputStream
而不是进行获取
byte[]
,我建议您使用它代替从内存中保存webapp。然后,您只需以众所周知的方式编写它
InputStream
-
OutputStream
循环使用通常的Java IO方法即可。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/486677.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号