Content-Disposition 响应头

时间:2025-04-03 14:32:01

Content-Disposition 属性是作为对下载文件的一个标识字段,在rfc2616 /rfc/ 章节19.5 Additional Features中

有介绍,具体介绍请看 /rfc/

字段介绍如下:

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 :将文件内容直接显示在页面 attachment:弹出对话框让用户下载具体例子:

Content-Type: image/jpeg  
Content-Disposition: inline;filename=  
Content-Description: just a small picture of me  

在页面内打开代码:

File file = new File("");  
String filename = ();  
("Content-Type","text/plain");  
("Content-Disposition","inline;filename=" + new String((),"utf-8"));  
("Content-Length","" + ());  

弹出保存框代码:

File file = new File("");  
String filename = ();  
("Content-Type","text/plain");  
("Content-Disposition","attachment;filename=" + new String((),"utf-8"));  
("Content-Length","" + ());  

=====================================================

转自:/androidmi/article/details/7519243