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

  • 相关阅读:
    Linux 文件系统满,查找大文件的方法
    STM32 HAL库重新设置中断向量表后,无法进入中断的解决方法
    C指针
    vs code 代码片段设置时遇到的几个小问题
    堆排序详解
    Java final和c++ const区别
    白话经典之String字符串详解
    java之SSH框架面试
    JSTL入门指南
    LeetCode(9):Palindrome Number
  • 原文地址:https://www.cnblogs.com/panshengqiang/p/2796642.html
Copyright © 2011-2022 走看看