点击下载按钮,要求弹出新窗口,生成的pdf文件,屏蔽掉IE的下载框,能够直接在IE内预览

解决方案 »

  1.   

     Content-Type:application/pdf 
    Content-Disposition:inline;
      

  2.   

    String mimetype=null; mimetype=" application/pdf;charset=ISO8859-1 "; response.setContentType(mimetype);

    response.setHeader("Content-disposition:inline", "attachment; filename="+ new String(filename.getBytes("GBK"),"ISO_8859_1"));
      

  3.   

    加上charset=ISO8859-1有时会让你下载。
      

  4.   

    response.setContentType("application/pdf");
    response.setHeader("Content-disposition:inline", "attachment; filename="+ new String(filename.getBytes("GBK"),"ISO_8859_1"));
    这样也不行啊 还是弹出下载框
      

  5.   

    attachment是要求附件形式下载吧。
    response.setHeader("Content-disposition", "inline; filename="+ new String(filename.getBytes("GBK"),"ISO_8859_1"));