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

      private void FileDownload()
        {
            try
            {
                string FileName = "轉入地址错误信息.txt";
                // FileName = ".//路径//文件名.扩展名";
                string FullFileName = Server.MapPath(".") + "\\轉入地址错误信息.txt";

                //FileName--要下载的文件名
                FileInfo DownloadFile = new FileInfo(FullFileName);
                //if (DownloadFile.Exists)
                //{

                Response.Clear();
                Response.ClearHeaders();
                Response.Buffer = true;
                Response.ContentType = "application/octet-stream";
                Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(DownloadFile.FullName, System.Text.Encoding.UTF8));
                // Response.AppendHeader("Content-Length", DownloadFile.Length.ToString());
                Response.WriteFile(DownloadFile.FullName);
                Response.Flush();
               

                //
            
                //}
                //else
                //{
                //    //文件不存在
                //}
            }
            catch (Exception ue)
            {
                //打开时异常了
            }
            finally
            {
                Response.End();
             
            }
        }

  • 相关阅读:
    poj3254 Corn Fields 利用状态压缩求方案数;
    UVA
    hdu 4272 LianLianKan 状态压缩
    项目棘手问题 没用
    70个HR面试题
    1、 Shiro框架:认证,授权(验权 2. Shiro框架实现权限控制方式:
    2菜单数据添加 4.1角色添加
    SQL 数据排重,去掉重复数据 有用
    几种我背过的设计模式 有用
    运单waybill快速录入
  • 原文地址:https://www.cnblogs.com/panshengqiang/p/2796642.html
Copyright © 2011-2022 走看看