我正在StrutsAction类中下载一个PDF文件。问题是使用
response.setHeader("Content-Disposition", "attachment;filename=file.pdf");
我想打开"保存/打开"框,但现在PDF内容是在浏览器中写入的:例如
%PDF-1.4 28 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Length 7746 /Width 200 /Height 123 /BitsPerComponent 8 /ColorSpace /DeviceRGB >>...(cut)
我在Chrome、Firefox和IE下尝试了这段代码(如下),其他地方都一样。此外,我使用了不同的PDF文件。
我的代码片段:
try {
URL fileUrl = new URL("file:///" + filePath);
URLConnection connection = fileUrl.openConnection();
inputStream = connection.getInputStream();
int fileLength = connection.getContentLength();
byte[] outputStreamBytes = new byte[100000];
response.setContentType("application/pdf");
response.setHeader("Content-Disposition", "attachment;filename=file.pdf");
response.setContentLength(fileLength);
outputStream = response.getOutputStream();
int iR;
while ((iR = inputStream.read(outputStreamBytes)) > 0) {
outputStream.write(outputStreamBytes, 0, iR);
}
return null;
} catch (MalformedURLException e) {
logger.debug("service", "An error occured while creating URL object for url: "
+ filePath);
response.sendError(HttpServletResponse.SC_NOT_FOUND);
return null;
} catch (IOException e) {
logger.debug("service", "An error occured while opening connection for url: "
+ filePath);
response.sendError(HttpServletResponse.SC_NOT_FOUND);
return null;
} finally {
if (outputStream != null) {
outputStream.close();
}
if (inputStream != null) {
inputStream.close();
}
inputStream.close();
}
return null;
还有什么东西不见了吗?
编辑
当我在Struts类中使用这段代码时,它不起作用,但当我在Servlet中使用这条代码时,它们起作用了。最奇怪的是,当我在操作类中只向Servlet写入"response.sendRedirect()"时(所有逻辑都在Servlet中),它也不起作用。
当我分析响应标头时,这三个示例中的所有内容都是相同的。
尝试将Content-Type标头更改为浏览器无法识别的内容。代替
response.setContentType("application/pdf");
使用
response.setContentType("application/x-download");
这将阻止浏览器对正文的内容采取行动(包括插件对内容的处理),并将强制浏览器显示"保存文件"对话框。
此外,验证Content-Disposition标头中分号后面是否存在单个空格以触发所需行为也可能很有用。因此,代替以下行
response.setHeader("Content-Disposition", "attachment;filename=file.pdf");
请使用以下内容。
response.setHeader("Content-Disposition", "attachment; filename=file.pdf");