星空网 > 软件开发 > ASP.net

ASP.net MVC 文件下载的几种方法

ASP.net MVC 中有几种下载文件的方法

第一种:最简单的超链接方法,<a>标签的href直接指向目标文件地址,这样容易暴露地址造成盗链,这里就不说了

第二种:后台下载

 

在后台下载中又可以细分为几种下载方式

首先,在前台,我们需要一个<a>标签

<a href="~/Home/download">Click to get file</a>

Home为controller,download为action。

在后台:

(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)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       18 }

 

(3)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     }

 




原标题:ASP.net MVC 文件下载的几种方法

关键词:ASP.NET

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

深圳市跨境电商物流:https://www.goluckyvip.com/tag/94093.html
山东跨境物流:https://www.goluckyvip.com/tag/94094.html
中国跨境电商物流:https://www.goluckyvip.com/tag/94095.html
福州跨境物流:https://www.goluckyvip.com/tag/94096.html
在缤客:https://www.goluckyvip.com/tag/941.html
商户回款新政:https://www.goluckyvip.com/tag/9410.html
三亚有哪些酒店值得入住?:https://www.vstour.cn/a/366173.html
零售晚报:丽人丽妆2023年扭亏为盈 玉容初、美壹堂等自有品牌增速超40% :https://www.kjdsnews.com/a/1836649.html
相关文章
我的浏览记录
最新相关资讯
海外公司注册 | 跨境电商服务平台 | 深圳旅行社 | 东南亚物流