Sealyu

--- 博客已迁移至: http://www.sealyu.com/blog

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  618 随笔 :: 87 文章 :: 225 评论 :: 0 Trackbacks
java 代码
 
  1. response.setContentType( "application/pdf" );  // MIME type for pdf doc  
  2. response.setHeader("Content-Disposition","attachment;filename=output.pdf;");  

  1. switch (df){  
  2.         case xls:  
  3.             // contentType设定      
  4.             contentType = "application/vnd.ms-excel;charset=utf-8";      
  5.             // attachment表示网页会出现保存、打开对话框      
  6.             filename = "inline; filename=" + fileName;      
  7.             break;                
  8.         case xlsx:  
  9.             // contentType设定      
  10.             contentType = "application/vnd.ms-excel;charset=utf-8";      
  11.             // attachment表示网页会出现保存、打开对话框      
  12.             filename = "inline; filename=" + fileName;      
  13.             break;  
  14.         case pdf:    
  15.             // contentType设定      
  16.             contentType = "application/pdf;charset=utf-8";      
  17.             // attachment表示网页会出现保存、打开对话框      
  18.             filename = "inline; filename=" + fileName;   
  19.             break;  
  20.         case doc:  
  21.             // contentType设定      
  22.             contentType = "application/msword;charset=utf-8";      
  23.             // attachment表示网页会出现保存、打开对话框      
  24.             filename = "inline; filename=" + fileName;      
  25.             break;                
  26.         case docx:  
  27.             // contentType设定      
  28.             contentType = "application/msword;charset=utf-8";      
  29.             // attachment表示网页会出现保存、打开对话框      
  30.             filename = "inline; filename=" + fileName;      
  31.             break;  
  32.         case txt:  
  33.             // contentType设定      
  34.             contentType = "text/plain;charset=utf-8";      
  35.             // attachment表示网页会出现保存、打开对话框      
  36.             filename = "inline; filename=" + fileName;      
  37.             break;  
  38.         default:  
  39.             // contentType设定      
  40.             contentType = "text/plain;charset=utf-8";      
  41.             // attachment表示网页会出现保存、打开对话框      
  42.             filename = "inline; filename=" + fileName;    
  43.             break;  
  44.     }    


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上做相应的设置即可

可参看以下几篇文档:



Sets the Content-Type header. Content-Type identifies the MIME type of the response document and the character set encoding. To set the Content-Type header, use the following code:
response.setContentType("text/html; charset=Shift_JIS");







The default MIME type is text/plain. Some common MIME types include:
  • HTML format (.htm or .html): text/html
  • Adobe Portable Document (pdf): application/pdf
  • Microsoft Word (.doc): application/msword
  • Microsoft Excel (.xls): application/msexcel
  • Microsoft Powerpoint (.ppt): application/ms-powerpoint
  • Realaudio (.rm, .ram): audio/x-pn-realaudio
  • Text format (.txt): text/txt
  • Zipped files (.zip): application/zip


posted on 2010-01-25 21:31 seal 阅读(1265) 评论(0)  编辑  收藏 所属分类: web

只有注册用户登录后才能发表评论。


网站导航: