作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将文件从文件系统流式传输到浏览器,但无法正常工作。我有一个带有 render=false 的 xpage 并且在 afterRenderResponse 上我有以下代码:
XspHttpServletResponse response = (XspHttpServletResponse) getFacesContext().getExternalContext().getResponse();
response.setContentType("application/octet-stream");
response.setHeader("Content-Disposition","attachment;filename=demofile.exe");
File file = new File("path to file");
FileInputStream fileIn = new FileInputStream(file);
ServletOutputStream out = response.getOutputStream();
etc. .....
java.lang.IllegalStateException: Can't get an OutputStream while a Writer is already in use
at com.ibm.xsp.webapp.XspHttpServletResponse.getOutputStream(XspHttpServletResponse.java:548)
最佳答案
您可以在 beforeRenderResponse 中调用 facesContext.getOutputStream() 而不是从 afterRenderResponse 中调用。
有关更多帮助,请参阅以下链接:
http://www.wissel.net/blog/d6plinks/SHWL-8BYMW8
http://www.wissel.net/blog/d6plinks/shwl-7mgfbn
关于xpages - 如何从 xPages 流式传输文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9468352/
我是一名优秀的程序员,十分优秀!