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();
             
            }
        }

  • 相关阅读:
    I帧/P帧/B帧---术语解释
    利用forwardInvocation实现消息重定向
    doubango地址配置
    ARC使用小结
    NSException异常处理
    Runtime of Objective-C
    perl脚本框架整理
    模块——Getopt::Long接收客户命令行参数和Smart::Comments输出获得的命令行参数内容
    Linux学习进阶示意图
    Linux——入门命令
  • 原文地址:https://www.cnblogs.com/panshengqiang/p/2796642.html
Copyright © 2011-2022 走看看