關鍵代碼
response.setContentType("application/pdf");
response.setHeader("Content-Disposition", "inline;fileName=XXXX.pdf");
其中比較關鍵的是Content-Disposition是inline而不是attachment,這樣提示瀏覽器來顯示文檔而不是下載
關鍵代碼
response.setContentType("application/pdf");
response.setHeader("Content-Disposition", "inline;fileName=XXXX.pdf");
其中比較關鍵的是Content-Disposition是inline而不是attachment,這樣提示瀏覽器來顯示文檔而不是下載
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。