标签:
第一种:最简单的超链接方法,<a>标签的href直接指向目标文件地址,这样容易暴露地址造成盗链,这里就不说了
在后台下载中又可以细分为几种下载方式
首先,在前台,我们需要一个<a>标签
<a href="~/Home/download">Click to get file</a>
Home为controller,download为action。
如果需要传一些参数,可以:
<a href="~/Home/download?id=1">Click to get file</a>
在后台:
(1)返回filestream
public FileStreamResult download() { string fileName = "aaa.txt";//客户端保存的文件名 string filePath = Server.MapPath("~/Document/123.txt");//路径 return File(new FileStream(filePath, FileMode.Open), "text/plain", fileName); }
其中:“text/plain”是文件MIME类型
(2)返回file
public FileResult download() { string filePath = Server.MapPath("~/Document/123.txt");//路径 return File(filePath, "text/plain", "welcome.txt"); //welcome.txt是客户端保存的名字 }
(3)TransmitFile方法
1 public void download() 2 { 3 string fileName = "aaa.txt";//客户端保存的文件名 4 string filePath = Server.MapPath("~/Document/123.txt");//路径 5 FileInfo fileinfo = new FileInfo(filePath); 6 Response.Clear(); //清除缓冲区流中的所有内容输出 7 Response.ClearContent(); //清除缓冲区流中的所有内容输出 8 Response.ClearHeaders(); //清除缓冲区流中的所有头 9 Response.Buffer = true; //该值指示是否缓冲输出,并在完成处理整个响应之后将其发送 10 Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName); 11 Response.AddHeader("Content-Length",fileinfo.Length.ToString()); 12 Response.AddHeader("Content-Transfer-Encoding", "binary"); 13 Response.ContentType = "application/unknow"; //获取或设置输出流的 HTTP MIME 类型 14 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); //获取或设置输出流的 HTTP 字符集 15 Response.TransmitFile(filePath); 16 Response.End(); 17 }
(4)Response分块下载
1 public void download() 2 { 3 string fileName = "aaa.txt";//客户端保存的文件名 4 string filePath = Server.MapPath("~/Document/123.txt");//路径 5 6 System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath); 7 if (fileInfo.Exists == true) 8 { 9 const long ChunkSize = 102400;//100K 每次读取文件,只读取100K,这样可以缓解服务器的压力 10 byte[] buffer = new byte[ChunkSize]; 11 12 Response.Clear(); 13 System.IO.FileStream iStream = System.IO.File.OpenRead(filePath); 14 long dataLengthToRead = iStream.Length;//获取下载的文件总大小 15 Response.ContentType = "application/octet-stream"; 16 Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName)); 17 while (dataLengthToRead > 0 && Response.IsClientConnected) 18 { 19 int lengthRead = iStream.Read(buffer, 0, Convert.ToInt32(ChunkSize));//读取的大小 20 Response.OutputStream.Write(buffer, 0, lengthRead); 21 Response.Flush(); 22 dataLengthToRead = dataLengthToRead - lengthRead; 23 } 24 Response.Close(); 25 } 26 }
<input>+ajax方法
要重点说说这个方法,ajax返回不了文件流,所以说用ajax调用上面任意一种后台方法都要出问题,下载不了文件。
所以,只能让后台返回所需下载文件的url地址,然后调用windows.location.href。
优点:ajax可以传好几个参数(当然以json形式),传100个都无所谓。你要是用<a href="网址?参数=值"></a>的方法传100得写死。。。(公司需求,至少要传100多个参数)
缺点:支持下载exe,rar,msi等类型文件。对于txt则会直接打开,慎用!对于其他不常用的类型文件则直接报错。
前端:
<input type="button" id="downloadbutton"/>
ajax:
$("#downloadbutton").click(function () { $.ajax({ type: "GET", url: "/Home/download", data: { id: "1" }, dataType:"json", success: function (result) { window.location.target = "_blank"; window.location.href = result; } }) })
后台:
public string download() { string filePath = "Document/123.msi";//路径 return filePath; }
出自:http://www.cnblogs.com/lovecsharp094/p/5501408.html
标签:
原文地址:http://www.cnblogs.com/cang12138/p/5520758.html