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上做相应的设置即可
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: PHP获取数组表示的路径方法分析【数组转字符串】 原创
下一篇: 揭秘:为什么说“明朝得国最正”?
推荐阅读
-
PHP callback函数使用方法和注意事项
-
JavaEE基础day02 1.定义Java中的变量 四类八种 2.变量定义和使用的注意事项 3.数据类型的转换、强制数据类型转换4.算数运算符、比较运算符、逻辑运算符、赋值运算符、三元运算符
-
JavaScript中各种编码解码函数的区别和注意事项_javascript技巧
-
Oracle LOWER() 和 UPPER()函数的使用方法
-
Python多线程使用和注意事项
-
jquery中eq和get的区别与使用方法_jquery
-
PHP网站安装程序制作的原理、步骤、注意事项和示例代码_PHP教程
-
MySQL索引类型总结和使用技巧以及注意事项_MySQL
-
Android 入门第十讲02-广播(广播概述,使用方法(系统广播,自定义广播,两个activity之间的交互和传值),EventBus使用方法,数据传递,线程切换,Android的系统广播大全)
-
PHP callback函数使用方法和注意事项