C# HTTP 斷點(diǎn)續(xù)傳下載源碼
當(dāng)前位置:點(diǎn)晴教程→知識管理交流
→『 技術(shù)文檔交流 』
在IIS中,磁盤路徑對應(yīng)的文件是可以直接下載的,而原生的IIS并不需要額外的配置就可以進(jìn)行斷點(diǎn)續(xù)傳。而在小豬的項目中使用到的文件下載地址不對應(yīng)磁盤路徑的文件地址,而是需要驗(yàn)證用戶是否有權(quán)限進(jìn)行下載然后使用使用fileresult提供文件下載。這樣整個下載過程都需要自己動手寫代碼完成。為了使客戶端的體驗(yàn)更佳,所以必須要提供斷點(diǎn)續(xù)傳的功能。 斷點(diǎn)續(xù)傳的原理 其實(shí)斷點(diǎn)續(xù)傳的原理很簡單,就是在 Http 的請求上和一般的下載有所不同而已。 打個比方,瀏覽器請求服務(wù)器上的一個文時,所發(fā)出的請求如下: 假設(shè)服務(wù)器域名為 wwww.smallerpig.com,文件名為 down.zip。 200 Content-Length=106786028 Accept-Ranges=bytes Date=Mon, 30 Apr 2001 12:56:11 GMT ETag=W/"02ca57e173c11:95b" Content-Type=application/octet-stream Server=Microsoft-IIS/5.0 Last-Modified=Mon, 30 Apr 2001 12:56:11 GMT 服務(wù)器收到請求后,按要求尋找請求的文件,提取文件的信息,然后返回給瀏覽器,返回信息如下: 200 Content-Length=106786028 Accept-Ranges=bytes Date=Mon, 30 Apr 2001 12:56:11 GMT ETag=W/"02ca57e173c11:95b" Content-Type=application/octet-stream Server=Microsoft-IIS/5.0 Last-Modified=Mon, 30 Apr 2001 12:56:11 GMT 所謂斷點(diǎn)續(xù)傳,也就是要從文件已經(jīng)下載的地方開始繼續(xù)下載。所以在客戶端瀏覽器傳給 Web 服務(wù)器的時候要多加一條信息 -- 從哪里開始。 仔細(xì)看一下就會發(fā)現(xiàn)多了一行 RANGE: bytes=2000070- GET /down.zip HTTP/1.0 User-Agent: NetFox RANGE: bytes=2000070- Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 206 Content-Length=106786028 Content-Range=bytes 2000070-106786027/106786028 Date=Mon, 30 Apr 2001 12:55:20 GMT ETag=W/"02ca57e173c11:95b" Content-Type=application/octet-stream Server=Microsoft-IIS/5.0 Last-Modified=Mon, 30 Apr 2001 12:55:20 GMT 和前面服務(wù)器返回的信息比較一下,就會發(fā)現(xiàn)增加了一行: Content-Range=bytes 2000070-106786027/106786028 返回的代碼也改為 206 了,而不再是 200 了。 C#實(shí)現(xiàn)斷點(diǎn)續(xù)傳 /// <summary> /// 支持?jǐn)帱c(diǎn)續(xù)傳 /// </summary> /// <param name="httpContext"></param> /// <param name="filePath"></param> /// <param name="speed"></param> /// <returns></returns> public static bool DownloadFile(HttpContext httpContext, string filePath, long speed) { bool ret = true; try { #region--驗(yàn)證:HttpMethod,請求的文件是否存在 switch (httpContext.Request.HttpMethod.ToUpper()) { //目前只支持GET和HEAD方法 case "GET": case "HEAD": break; default: httpContext.Response.StatusCode = 501; return false; } if (!System.IO.File.Exists(filePath)) { httpContext.Response.StatusCode = 404; return false; } #endregion #region 定義局部變量 long startBytes = 0; int packSize = 1024 * 40; //分塊讀取,每塊40K bytes string fileName = Path.GetFileName(filePath); FileStream myFile = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); BinaryReader br = new BinaryReader(myFile); long fileLength = myFile.Length; int sleep = (int)Math.Ceiling(1000.0 * packSize / speed);//毫秒數(shù):讀取下一數(shù)據(jù)塊的時間間隔 string lastUpdateTiemStr = System.IO.File.GetLastWriteTimeUtc(filePath).ToString("r"); string eTag = HttpUtility.UrlEncode(fileName, Encoding.UTF8) + lastUpdateTiemStr;//便于恢復(fù)下載時提取請求頭; #endregion #region--驗(yàn)證:文件是否太大,是否是續(xù)傳,且在上次被請求的日期之后是否被修 if (myFile.Length > Int32.MaxValue) { //-------文件太大了------- httpContext.Response.StatusCode = 413;//請求實(shí)體太大 return false; } if (httpContext.Request.Headers["If-Range"] != null)//對應(yīng)響應(yīng)頭ETag:文件名+文件最后修改時間 { //----------上次被請求的日期之后被修改過-------------- if (httpContext.Request.Headers["If-Range"].Replace("\"", "") != eTag) { //文件修改過 httpContext.Response.StatusCode = 412;//預(yù)處理失敗 return false; } } #endregion try { #region -------添加重要響應(yīng)頭、解析請求頭、相關(guān)驗(yàn)證------------------- httpContext.Response.Clear(); httpContext.Response.Buffer = false; httpContext.Response.AddHeader("Content-MD5",Common.ASE.GetMD5Hash(filePath));//用于驗(yàn)證文件 httpContext.Response.AddHeader("Accept-Ranges", "bytes");//重要:續(xù)傳必須 httpContext.Response.AppendHeader("ETag", "\"" + eTag + "\"");//重要:續(xù)傳必須 httpContext.Response.AppendHeader("Last-Modified", lastUpdateTiemStr);//把最后修改日期寫入響應(yīng) httpContext.Response.ContentType = "application/octet-stream";//MIME類型:匹配任意文件類型 httpContext.Response.AddHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, Encoding.UTF8).Replace("+", "%20")); httpContext.Response.AddHeader("Content-Length", (fileLength - startBytes).ToString()); httpContext.Response.AddHeader("Connection", "Keep-Alive"); httpContext.Response.ContentEncoding = Encoding.UTF8; if (httpContext.Request.Headers["Range"] != null) { //------如果是續(xù)傳請求,則獲取續(xù)傳的起始位置,即已經(jīng)下載到客戶端的字節(jié)數(shù)------ httpContext.Response.StatusCode = 206;//重要:續(xù)傳必須,表示局部范圍響應(yīng)。初始下載時默認(rèn)為200 string[] range = httpContext.Request.Headers["Range"].Split(new char[] { '=', '-' });//"bytes=1474560-" startBytes = Convert.ToInt64(range[1]);//已經(jīng)下載的字節(jié)數(shù),即本次下載的開始位置 if (startBytes < 0 || startBytes >= fileLength) { //無效的起始位置 return false; } } if (startBytes > 0) {//------如果是續(xù)傳請求,告訴客戶端本次的開始字節(jié)數(shù),總長度,以便客戶端將續(xù)傳數(shù)據(jù)追加到startBytes位置后---------- httpContext.Response.AddHeader("Content-Range", string.Format(" bytes {0}-{1}/{2}", startBytes, fileLength - 1, fileLength)); } #endregion #region -------向客戶端發(fā)送數(shù)據(jù)塊------------------- br.BaseStream.Seek(startBytes, SeekOrigin.Begin); int maxCount = (int)Math.Ceiling((fileLength - startBytes + 0.0) / packSize);//分塊下載,剩余部分可分成的塊數(shù) for (int i = 0; i < maxCount && httpContext.Response.IsClientConnected; i++) {//客戶端中斷連接,則暫停 httpContext.Response.BinaryWrite(br.ReadBytes(packSize)); httpContext.Response.Flush(); if (sleep > 1) Thread.Sleep(sleep); } #endregion } catch { ret = false; } finally { br.Close(); myFile.Close(); } } catch { ret = false; } return ret; } 該文章在 2024/3/13 0:09:08 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |