我有一个有趣的问题。当用户单击按钮时,我需要发生两件事:
- 弹出一个word文档
- 显示声明某种消息的 *.jsp 页面。
问题是,要生成 word 文档弹出窗口,我在 Controller 方法中有以下内容:
response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document");
response.setHeader("Content-Disposition", "attachment;filename=" + templateTitle);
OutputStream out = response.getOutputStream();
InputStream inputStream = session.getServletContext().getResourceAsStream("/resources/files/" + firm.getFolder() + "/" + templateTitle);
if (inputStream != null) {
byte[] wordDoc = readFully(inputStream);
out.write(wordDoc);
out.flush();
}
这可行,但是不会显示 *.jsp 感谢页面。如果我注释掉这段代码,就会显示 *.jsp 感谢页面。
我的假设是我正在更改导致 *.jsp 不显示的响应属性。
我该如何处理这两个过程?