C# 文件下载整理_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C# 文件下载整理

C# 文件下载整理

 2013/9/30 10:18:29  TiestoRay  博客园  我要评论(0)
  • 摘要:1.通过byte[]下载文件publicvoidFileDownLoadByByte(byte[]fileData,stringfileName){Response.Clear();Response.ClearHeaders();Response.Buffer=true;Response.ContentType="application/octet-stream";Response.AppendHeader("Content-Disposition","attachment
  • 标签:C# 文件 下载

1.通过byte[]下载文件

public void FileDownLoadByByte(byte[] fileData, string fileName)
{
    Response.Clear();
    Response.ClearHeaders();
    Response.Buffer = true;
    Response.ContentType = "application/octet-stream";
    Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
    Response.AppendHeader("Content-Length", fileData.Length.ToString());
    Response.BinaryWrite(fileData);
    Response.Flush();
    Response.End();
}

 

发表评论
用户名: 匿名