我是靠谱客的博主 兴奋糖豆,最近开发中收集的这篇文章主要介绍c#服务端 AJAX下载二进制文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 写在vue初始化里的,也可以做js函数,因为jQuery的ajax不支持文件流返回

这是js获取文件流然后js处理下载

downloadFile: function (fileId, Name,type,DataVideoFileId) {
                    var _this = this;
                    var fileName = Name + "." + type;
                    var xhr = new XMLHttpRequest();    
                    xhr.open("get", 你的服务url, true);
                    xhr.responseType = "blob";
                    xhr.onload = function () {
                        if (this.status == 200) {
                            var blob = this.response;
                            if (window.navigator.msSaveOrOpenBlob) {
                                navigator.msSaveBlob(blob, fileName);
                            } else {
                                var link = document.createElement('a');
                                link.href = window.URL.createObjectURL(blob);
                                link.download = fileName;
                                link.click();
                                window.URL.revokeObjectURL(link.href);
                            }
                        }
                    }; xhr.send();
                }

 

后台c#服务端,首先根据url参数找到文件的路径,然后打开文件写入到Response

    /// <summary>
    /// 下载文件
    /// </summary>
    /// <param name="context"></param>
    /// <param name="userId"></param>
    /// <param name="id"></param>
    /// <returns></returns>
    public void DownloadFile(HttpContext context, string userId, long id)
    {
        try
        {
          //此处写你的逻辑得到文件地址,或者进行记录
               
            //以字符流的形式下载文件
            FileStream fs = new FileStream(filePath, FileMode.Open);
            byte[] bytes = new byte[(int)fs.Length];
            fs.Read(bytes, 0, bytes.Length);
            fs.Close();
            context.Response.ContentType = "application/octet-stream";
            //通知浏览器下载文件而不是打开
            context.Response.AddHeader("Content-Disposition", "attachment;   filename=" + HttpUtility.UrlEncode(fileName +"."+ fileType, System.Text.Encoding.UTF8));
            context.Response.BinaryWrite(bytes);
        }
        catch (Exception ex)
        {
            LogHelper.WriteErrorLog(ex.ToString(), "PageError", "GerenVideo");
        }
        finally
        {
            context.Response.Flush();
            context.Response.End();
        }
    }

 

最后

以上就是兴奋糖豆为你收集整理的c#服务端 AJAX下载二进制文件的全部内容,希望文章能够帮你解决c#服务端 AJAX下载二进制文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部