zoukankan      html  css  js  c++  java
  • 文件下载功能

    代码如下:

    /// <summary>
    /// 附件下载
    /// </summary>
    /// <param name="attachId">附件ID</param>
    public void DownloadAttach(int attachId)
    {
        Edu_Attach edu_Attach = edu_AttachService.findById<Edu_Attach>(attachId);
        if (edu_Attach != null)
        {
            HttpContext context = (HttpContext)ctx.web.Context;
            if (context != null)
            {
                string filePathName = PathHelper.Map(sys.Path.DiskPhoto) + edu_Attach.AttachContent.Replace("/static/upload/image", "").Replace("/", "\");
                int pos = filePathName.LastIndexOf("\");
                string fileName = filePathName.Substring(pos + 1);
                string UserAgent = context.Request.ServerVariables["http_user_agent"].ToLower();
                if (UserAgent.IndexOf("firefox") == -1)
                {
                    //非火狐浏览器
                    context.Response.AddHeader("content-disposition", "attachment;filename=" + HttpUtility.UrlEncode(edu_Attach.AttachName));
                }
                else
                {
                    context.Response.AddHeader("content-disposition", "attachment;filename=" + edu_Attach.AttachName);
                }
                FileStream fs = new FileStream(filePathName, FileMode.Open, FileAccess.Read);
                byte[] bArr = new byte[fs.Length];
                fs.Read(bArr, 0, bArr.Length);
                fs.Close();
                context.Response.ContentEncoding = Encoding.UTF8;
                context.Response.BinaryWrite(bArr);
                context.Response.Flush();
                context.Response.End();
            }
        }
    }
    View Code
  • 相关阅读:
    谷歌浏览器解决跨域
    vue 解决跨域问题
    nth-of-type & nth-child 的区别
    uniapp 小程序 获取位置信息
    笔记本使用命令创建wifi
    express每次修改后重新启动
    express 一个js文件中写多个路由 然后使用
    小程序分享到朋友圈
    小程序分享给朋友
    小程序客服功能实现
  • 原文地址:https://www.cnblogs.com/s0611163/p/3601938.html
Copyright © 2011-2022 走看看