TransmitFile is not working

本文关键字:working not is TransmitFile | 更新日期: 2023-09-27 18:11:15

我有一个文件,它的完整路径(加上文件名)在这个变量中:

fileTemporary

我想把那个文件下载到客户端。

我这样做:

 HttpContext.Current.Response.TransmitFile(fileTemporary);

但是什么都没有发生,我的意思是当我点击按钮时,这个文件执行,但是没有任何东西被下载到客户端。客户端浏览器上没有文件

我做错了什么?

TransmitFile is not working

如果你使用MVC,你可以:

[HttpGet]
        public virtual ActionResult GetFile(string fileTemporary)
        {
            // ...preparing file path... init fileTemporary.
            var bytes = System.IO.File.ReadAllBytes(fileTemporary);
            var fileContent = new FileContentResult(bytes, "binary/octet-stream");
            Response.AddHeader("Content-Disposition", "attachment; filename='"YourFileName.txt'"");
            return fileContent;
        }

如果您使用ASP。NET或任何你可以使用以下(对不起,我的旧代码,但你可以理解的方法):

var bytes = System.IO.File.ReadAllBytes(fileTemporary);
SendFileBytesToResponse(bytes, fileName);
public static bool SendFileBytesToResponse(byte[] bytes, string sFileName)
        {
            if (bytes!= null)
            {
                string downloadName = sFileName;
                System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;
                response.Clear();
                response.AddHeader("Content-Type", "binary/octet-stream");
                response.AddHeader("Content-Disposition",
                                   "attachment; filename=" + downloadName + "; size=" + bytes.Length.ToString());
                response.Flush();
                response.BinaryWrite(bytes);
                response.Flush();
                response.End();
            }
            return true;
        }

无需重新设计您的解决方案:

System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.AddHeader("Content-Type", "binary/octet-stream");
System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition",
                "attachment; filename=" + fileName);  
System.Web.HttpContext.Current.Response.TransmitFile(fileName);

如果你想让浏览器正确解释你的文件,你需要更精确地指定标题"Content-Type"。请参阅内容类型列表