小编典典
在action方法中,您可以通过JSF幕后获得HTTP
servlet响应ExternalContext#getResponse()。然后,您至少需要将HTTP
Content-Type标头设置为application/pdf,并将HTTP Content-
Disposition标头设置为attachment(当您要弹出 另存为 对话框时)或将HTTP
标头设置为(当您想让inlineWeb浏览器处理显示本身时)。最后,您需要确保FacesContext#responseComplete()稍后再打电话以避免IllegalStateExceptions飞来飞去。
开球示例:
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方法即可。
2020-09-16