В методе действия вы можете получить ответ сервлета HTTP из-под колпака JSF на ExternalContext#getResponse()
.Затем вам нужно установить как минимум заголовок HTTP Content-Type
на application/pdf
и заголовок HTTP Content-Disposition
на attachment
(когда вы хотите открыть диалог Сохранить как ) или inline
(когда вы хотите, чтобы веб-браузер обрабатывал сам дисплей).Наконец, вам нужно убедиться, что вы позвоните 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[]
, я бы рекомендовал использовать его вместо того, чтобы сохранить веб-приложение из памяти.Затем вы просто пишете это в известном цикле InputStream
- OutputStream
обычным способом ввода-вывода Java.