C# Net MVC 大文件下載幾種方式、支持速度限制、資源佔用小

上一篇咱們說到大文件的分片下載、斷點續傳、秒傳,有的博友就想看分片下載,咱們也來總結一下下載的幾種方式,寫的比較片面,你們見諒^_^。html


下載方式:web

一、html超連接下載;ajax

二、後臺下載(四種方法:返回filestream、返回file、TransmitTile方法、Response分塊下載)。服務器


 

一、html超連接下載app

  超級連接在本質上屬於一個網頁的一部分,它是一種容許咱們同其餘網頁或站點之間進行鏈接的元素。網站

各個網頁連接在一塊兒後,才能真正構成一個網站。spa

  所謂的超連接是指從一個網頁指向一個目標的鏈接關係,這個目標能夠是另外一個網頁,也能夠是相同網頁code

上的不一樣位置,還能夠是一個圖片,一個電子郵件地址,一個文件,甚至是一個應用程序。htm

  超連接的種類(通常有四種:http,file,ftp,maito):blog

  1. http          如:<a href="http://www.baidu.com">百度</a>

  2. file           如:<a href="file://images/1.jpg">圖片</a>

  3. ftp            如:<a href="ftp://192.168.0.0/">進入</a>

  4. mailto      如:<a href="mailto:qq@163.com">e-mail</a>


 

二、後臺下載(四種方法:返回filestream、返回file、TransmitTile方法、Response分塊下載)

前臺請求後臺,後臺作出響應進行數據下載。至於請求方式能夠多樣,好比:a標籤跳轉,ajax請求等都可。

咱們來看後臺響應的四種方式:


 

一、返回filestream

    /// <summary>
        /// 返回filestream
        /// </summary>
        /// <returns></returns>
        public FileStreamResult filestream_download()
      {
        string fileName = "wenjian.txt";//客戶端保存的文件名
          string filePath = Server.MapPath("/Upload/wenjian.txt");//指定文件所在的全路徑
          return File(new FileStream(filePath, FileMode.Open), "text/plain",//"text/plain"是文件MIME類型
        fileName);
      }

 


二、返回file

    /// <summary>
        /// 返回file
        /// </summary>
        /// <returns></returns>
        public FileResult file_download()
        {
            string filePath = Server.MapPath("/Upload/wenjian.txt");//路徑
            return File(filePath, "text/plain", "wenjian.txt"); //"text/plain"是文件MIME類型,welcome.txt是客戶端保存的名字
        }

 


三、TransmitFile方法

/// <summary>
/// TransmitFile方法
/// </summary>

public bool TransmitFile_download() { string fileName = "wenjian.txt";//客戶端保存的文件名
     string filePath = Server.MapPath("/Upload/wenjian.txt");//路徑
     FileInfo fileinfo = new FileInfo(filePath); Response.Clear(); //清除緩衝區流中的全部內容輸出
     Response.ClearContent();  //清除緩衝區流中的全部內容輸出
     Response.ClearHeaders();  //清除緩衝區流中的全部頭
     Response.Buffer = true;   //該值指示是否緩衝輸出,並在完成處理整個響應以後將其發送
     Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName); Response.AddHeader("Content-Length",fileinfo.Length.ToString()); Response.AddHeader("Content-Transfer-Encoding", "binary"); Response.ContentType = "application/unknow";  //獲取或設置輸出流的 HTTP MIME 類型
     Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); //獲取或設置輸出流的 HTTP 字符集
 Response.TransmitFile(filePath); Response.End();
   return true; }

 


四、Response分塊下載

     /// <summary>
        ///  Response分塊下載,輸出硬盤文件,提供下載 支持大文件、續傳、速度限制、資源佔用小
        /// </summary>
        /// <param name="fileName">客戶端保存的文件名</param>
        /// <param name="filePath">客戶端保存的文件路徑(包括文件名)</param>
        /// <returns></returns>
        public bool ResponseDownLoad(string fileName, string filePath)
        {
            
           fileName = "wenjian.txt";//客戶端保存的文件名
           filePath = Server.MapPath("/Upload/wenjian.txt"); //路徑(後續從webconfig讀取)

           System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath);
           if (fileInfo.Exists == true)
           {
               const long ChunkSize = 102400;//100K 每次讀取文件,只讀取100K,這樣能夠緩解服務器的壓力
               byte[] buffer = new byte[ChunkSize];

               Response.Clear();
               System.IO.FileStream iStream = System.IO.File.OpenRead(filePath);
               long dataLengthToRead = iStream.Length;//獲取下載的文件總大小
               Response.ContentType = "application/octet-stream";
               Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName));
               while (dataLengthToRead > 0 && Response.IsClientConnected)
               {
                   int lengthRead = iStream.Read(buffer, 0, Convert.ToInt32(ChunkSize));//讀取的大小
                   Response.OutputStream.Write(buffer, 0, lengthRead);
                   Response.Flush();
                   dataLengthToRead = dataLengthToRead - lengthRead;
               }
               Response.Close();
               return true;
           }
           else
               return false;
        }

 


 

總結:

以上就是我所瞭解的幾種下載方式,我的比較中意Response分塊下載。

感謝你們的支持,寫的很差望你們見諒。^_^

相關文章
相關標籤/搜索