排名
3
文章
317
粉丝
22
评论
14
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:
50010702506256


欢迎加群交流技术

使用response下载文件:
- using (FileStream fs = new FileStream(filePath, FileMode.Open))
- {
- byte[] bytes = new byte[(int)fs.Length];
- fs.Read(bytes, 0, bytes.Length);
- fs.Close();
- //Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
- Response.ContentType = "application/octet-stream;charset=UTF-8";;
- string newName = Guid.NewGuid().ToString().Replace("-", "");
- Response.Headers.Add("Content-Disposition", "attachment; filename=" + newName + "." + tnblogResourceDTO.Suffix);
- Response.BodyWriter.WriteAsync(bytes);
- Response.BodyWriter.FlushAsync();
- }
可以直接返回return file来下载文件
- private readonly IWebHostEnvironment _webHostEnvironment;
- public PhoneController(IWebHostEnvironment webHostEnvironment)
- {
- _webHostEnvironment = webHostEnvironment;
- }
- public IActionResult DownloadFile()
- {
- var filePath = "/app/tnblog_beta.apk";
- var fileName = "tnblog_beta.apk";
- /* FileStream fs = new FileStream(_webHostEnvironment.WebRootPath + filePath, FileMode.OpenOrCreate);
- fs.Close();*/
- return File(new FileStream(_webHostEnvironment.WebRootPath + filePath, FileMode.Open),
- "application/octet-stream", fileName);
- }
使用response下载excel
- //把内存流做为文件下载中转
- MemoryStream memoryStream = new MemoryStream();
- workbook.Write(memoryStream);
-
- //Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
- Response.ContentType = "application/octet-stream;charset=UTF-8"; ;
- string newName = Guid.NewGuid().ToString().Replace("-", "");
-
- Response.Headers.Add("Content-Disposition", "attachment;filename=" + WebUtility.UrlEncode("用户信息表.xls"));
- //Response.Headers.Add("Content-Disposition", "attachment;filename=用户信息表.xls");
- Response.BodyWriter.WriteAsync(memoryStream.ToArray());
- Response.BodyWriter.FlushAsync();
这里下载名称做了一下url编码不然遇到中文下载会报错:InvalidOperationException: Invalid non-ASCII or control character in header: 0x7528
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)
评价