Content-Disposition使用方法和注意事项
最近不少web技术圈内的朋友在讨论协议方面的事情,有的说web开发者应该熟悉web相关的协议,有的则说不用很了解。个人认为这要分层次来看待这个问 题,对于一个新手或者刚入门的web开发人员而言,研究协议方面的东西可能会使得web开发失去趣味性、抹煞学习积极性,这类人应该更多的了解基本的 web技术使用。而对于在该行业工作多年的老鸟来说,协议相关的内容、标准相关内容应该尽量多些的了解,因为只有这样才能使得经手的web系统更加优秀 (安全、漂亮、快速、兼容性好、体验好……)。
本文我们来说一下mime 协议的一个扩展content-disposition。
我们在开发web系统时有时会有以下需求:
- 希望某类或者某已知mime 类型的文件(比如:*.gif;*.txt;*.htm)能够在访问时弹出“文件下载”对话框
- 希望以原始文件名(上传时的文件名,例如:山东省*1024号文件.doc)提供下载,但服务器上保存的地址却是其他文件名(如:12519810948091234_asdf.doc)
- 希望某文件直接在浏览器上显示而不是弹出文件下载对话框
- ……………………
要解决上述需求就可以使用content-disposition来解决。第一个需求的解决办法是
response.addheader "content-disposition","attachment; filename=fname.ext"
将上述需求进行归我给出如下例子代码:
public static void todownload(string serverfilpath,string filename) { filestream filestream = new filestream(serverfilpath, filemode.open); long filesize = filestream.length; httpcontext.current.response.contenttype = "application/octet-stream"; httpcontext.current.response.addheader("content-disposition", "attachment; filename=\"" + utf_filename(filename) + "\";"); ////attachment --- 作为附件下载 ////inline --- 在线打开 httpcontext.current.response.addheader("content-length", filesize.tostring()); byte[] filebuffer = new byte[filesize]; filestream.read(filebuffer, 0, (int)filesize); httpcontext.current.response.binarywrite(filebuffer); filestream.close(); httpcontext.current.response.end(); } public static void toopen(string serverfilpath, string filename) { filestream filestream = new filestream(serverfilpath, filemode.open); long filesize = filestream.length; httpcontext.current.response.contenttype = "application/octet-stream"; httpcontext.current.response.addheader("content-disposition", "inline; filename=\"" + utf_filename(filename) + "\";"); httpcontext.current.response.addheader("content-length", filesize.tostring()); byte[] filebuffer = new byte[filesize]; filestream.read(filebuffer, 0, (int)filesize); httpcontext.current.response.binarywrite(filebuffer); filestream.close(); httpcontext.current.response.end(); } private static string utf_filename(string filename) { return httputility.urlencode(filename, system.text.encoding.utf8); }
简单的对上述代码做一下解析,todownload方法为将一个服务器上的文件(serverfilpath为服务器上的物理地址),以某文件名 (filename)在浏览器上弹出“文件下载”对话框,而toopen是将服务器上的某文件以某文件名在浏览器中显示/打开的。注意其中我使用了 utf_filename方法,该方法很简单,主要为了解决包含非英文/数字名称的问题,比如说文件名为“衣明志.doc”,使用该方法客户端就不会出现 乱码了。
需要注意以下几个问题:
1、content-disposition是mime协议的扩展,由于多方面的安全性考虑没有被标准化,所以可能某些浏览器不支持,比如说ie4.01
2、我们可以使用程序来使用它,也可以在web服务器(比如iis)上使用它,只需要在http header上做相应的设置即可
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
MySQL中的LOCATE和POSITION函数使用方法
-
CorelDRAW印前排版的技巧和注意事项
-
Python中列表和元组的使用方法和区别详解
-
ajax的使用方法和原理,ajax包括哪些技术呢
-
Python中map,reduce,filter和sorted函数的使用方法
-
教你用CorelDRAW绘制矩形和方形 矩形工具的使用方法和应用技巧介绍
-
CorelDRAW中手绘工具的使用方法和操作技巧介绍
-
Python中for循环和while循环的基本使用方法
-
sqlserver Union和SQL Union All使用方法
-
解决Maven 项目报错 java.httpservlet和synchronized使用方法