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

    #region 下载文件
        /// <summary>
        
    /// 下载文件
        
    /// </summary>
        
    /// <param name="downName">客户端下载时候的名字 不需要文件后缀</param>
        
    /// <param name="serverPath">文件路径例如 根目录下 "../test/test.txt"</param>
        public static void DonwloadFile(string downName, string serverPath)
        {
            string filePath = serverPath;
            if (!serverPath.Contains(":"))
            {
                 filePath = HttpContext.Current.Server.MapPath(serverPath);//路径
            }
            string fileExtensioin = Path.GetExtension(filePath);
            string fileName = downName + fileExtensioin;//客户端保存的文件名
            
    //以字符流的形式下载文件
            FileStream fs = new FileStream(filePath, FileMode.Open);
            byte[] bytes = new byte[(int)fs.Length];
            fs.Read(bytes, 0, bytes.Length);
            fs.Close();
            File.Delete(filePath);//此处用于导出文件夹后的删除,根据自己的需要
            HttpContext.Current.Response.Clear();
            HttpContext.Current.Response.ContentType = "application/octet-stream";
            //通知浏览器下载文件而不是打开
            HttpContext.Current.Response.AddHeader("Content-Disposition""attachment;  filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
            HttpContext.Current.Response.BinaryWrite(bytes);
            HttpContext.Current.Response.Flush();
            HttpContext.Current.Response.End();
        }
        #endregion
    以流的方式 下载文件
  • 相关阅读:
    索引的结构和性能的关系
    TP5的多图上传
    TP5页面更改数字进行AJAX排序
    安装Git版本控制系统 以及Git Bash的基础命令
    tp5 前台 点击显示一个弹窗
    Tp5 (轮回) 多个富文本应用
    Tp5 (轮回) AJAX请求写搜索页面
    安装 SVN 服务器
    Tp5(轮回)------单图上传 运用AJAX 请求
    TP5中(通过一个表去取另一个表的相对应的名称)
  • 原文地址:https://www.cnblogs.com/clc2008/p/2342716.html
Copyright © 2011-2022 走看看