内容处置附件无效-在屏幕上打印位

| 我正在尝试在Struts Action类中下载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中使用此代码时,它正在工作。 最奇怪的是,当我在动作类中仅将\“ response.sendRedirect()\”写入Servlet(并且所有逻辑都在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\");
    

要回复问题请先登录注册