Content-Disposition屬性有兩種類型:inline 和 attachment inline :將文件內(nèi)容直接顯示在頁(yè)面 attachment:彈出對(duì)話框讓用戶下載具體例子
disposition := "Content-Disposition" ":"
disposition-type
*(";" disposition-parm)
disposition-type := "inline"
/ "attachment"
/ extension-token
; values are not case-sensitive
disposition-parm := filename-parm / parameter
filename-parm := "filename" "=" value;
Content-Disposition屬性有兩種類型:inline 和 attachment inline :將文件內(nèi)容直接顯示在頁(yè)面 attachment:彈出對(duì)話框讓用戶下載具體例子:
Content-Type: image/jpeg
Content-Disposition: inline;filename=hello.jpg
Content-Description: just a small picture of me
在頁(yè)面內(nèi)打開(kāi)代碼:
File file = new File("rfc1806.txt");
String filename = file.getName();
response.setHeader("Content-Type","text/plain");
response.addHeader("Content-Disposition","inline;filename=" + new String(filename.getBytes(),"utf-8"));
response.addHeader("Content-Length","" + file.length());
彈出保存框代碼:
File file = new File("rfc1806.txt");
String filename = file.getName();
response.setHeader("Content-Type","text/plain");
response.addHeader("Content-Disposition","attachment;filename=" + new String(filename.getBytes(),"utf-8"));
response.addHeader("Content-Length","" + file.length());