文件預(yù)覽/下載

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()); 
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 本文包括:1、文件上傳概述2、利用 Commons-fileupload 組件實(shí)現(xiàn)文件上傳3、核心API——Dis...
    廖少少閱讀 12,745評(píng)論 5 91
  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 179,189評(píng)論 25 708
  • 問(wèn)答題47 /72 常見(jiàn)瀏覽器兼容性問(wèn)題與解決方案? 參考答案 (1)瀏覽器兼容問(wèn)題一:不同瀏覽器的標(biāo)簽?zāi)J(rèn)的外補(bǔ)...
    _Yfling閱讀 14,168評(píng)論 1 92
  • 青春是悲傷的,是灑脫的,是粉紅的。在青春里每個(gè)女孩心中都有一個(gè)白馬王子,總會(huì)幻想自己與他的種種,深深的愛(ài)著他...
    陽(yáng)光的等待閱讀 414評(píng)論 0 0
  • 黑夜降臨,卡從大明宮前走過(guò),他新到西城,為的是追求荻。他已成功。 大明宮的臺(tái)階上,坐著許多休憩的人,只有一個(gè)十八九...
    夫吹萬(wàn)不同閱讀 513評(píng)論 0 0

友情鏈接更多精彩內(nèi)容