ASP.net MVC 檔案下載的幾種方法(歡迎討論) 在ASP.net MVC 中有幾種下載檔案的方法 前提:要下載的檔案必須是在伺服器目錄中的,至於不在web項目server目錄中的檔案下載我不知道,但是還挺想瞭解的。 第一種:最簡單的超連結方法,<a>標籤的href直接指向目標檔案地址,這樣容易暴露地址造成盜鏈,這裡就不說了 第二種:後台下載 在後台下載中又可以細分為幾種下載方式 首先,在前台,我們需要一個<a>標籤
<a href="~/Home/download">Click to get file</a> Home為controller,download為action。 如果需要傳一些參數,可以:
<a href="~/Home/download?id=1">Click to get file</a> 在後台: (1)返回filestream
public FileStreamResult download(){ string fileName = "aaa.txt";//用戶端儲存的檔案名稱 string filePath = Server.MapPath("~/Document/123.txt");//路徑 return File(new FileStream(filePath, FileMode.Open), "text/plain", fileName);} 其中:“text/plain”是檔案MIME類型 (2)返回file
public FileResult download() { string filePath = Server.MapPath("~/Document/123.txt");//路徑 return File(filePath, "text/plain", "welcome.txt"); //welcome.txt是用戶端儲存的名字 } (3)TransmitFile方法
1 public void download() 2 { 3 string fileName = "aaa.txt";//用戶端儲存的檔案名稱 4 string filePath = Server.MapPath("~/Document/123.txt");//路徑 5 FileInfo fileinfo = new FileInfo(filePath); 6 Response.Clear(); //清除緩衝區流中的所有內容輸出 7 Response.ClearContent(); //清除緩衝區流中的所有內容輸出 8 Response.ClearHeaders(); //清除緩衝區流中的所有頭 9 Response.Buffer = true; //該值指示是否緩衝輸出,並在完成處理整個響應之後將其發送10 Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);11 Response.AddHeader("Content-Length",fileinfo.Length.ToString());12 Response.AddHeader("Content-Transfer-Encoding", "binary");13 Response.ContentType = "application/unknow"; //擷取或設定輸出資料流的 HTTP MIME 類型14 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); //擷取或設定輸出資料流的 HTTP 字元集15 Response.TransmitFile(filePath);16 Response.End();17 } (4)Response分塊下載
1 public void download() 2 { 3 string fileName = "aaa.txt";//用戶端儲存的檔案名稱 4 string filePath = Server.MapPath("~/Document/123.txt");//路徑 5 6 System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath); 7 if (fileInfo.Exists == true) 8 { 9 const long ChunkSize = 102400;//100K 每次讀取檔案,唯讀取100K,這樣可以緩解伺服器的壓力10 byte[] buffer = new byte[ChunkSize];11 12 Response.Clear();13 System.IO.FileStream iStream = System.IO.File.OpenRead(filePath);14 long dataLengthToRead = iStream.Length;//擷取下載的檔案總大小15 Response.ContentType = "application/octet-stream";16 Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName));17 while (dataLengthToRead > 0 && Response.IsClientConnected)18 {19 int lengthRead = iStream.Read(buffer, 0, Convert.ToInt32(ChunkSize));//讀取的大小20 Response.OutputStream.Write(buffer, 0, lengthRead);21 Response.Flush();22 dataLengthToRead = dataLengthToRead - lengthRead;23 }24 Response.Close();25 } 26 } <input>+ajax方法 要重點說說這個方法,ajax返回不了檔案流,所以說用ajax調用上面任意一種後台方法都要出問題,下載不了檔案。 所以,只能讓後台返回所需下載檔案的url地址,然後調用windows.location.href。 優點:ajax可以傳好幾個參數(當然以json形式),傳100個都無所謂。你要是用<a href="網址?參數=值"></a>的方法傳100得寫死。。。(公司需求,至少要傳100多個參數) 缺點:支援下載exe,rar,msi等類型檔案。對於txt則會直接開啟,慎用!對於其他不常用的類型檔案則直接報錯。 所以我的建議是得到多個參數,通過資料庫找到所有需要下載的檔案然後壓縮打包,然後返回url下載。(你要是一個一個給使用者下,使用者都瘋了) !那麼問題又來了,C#怎麼用代碼實現將本地的一些檔案打包壓縮到伺服器目錄下呢?這我不知道。 因為你只是單純的放在目錄檔案夾下沒有用的,我們平時在伺服器某目錄下添加某一個檔案都是右鍵,添加XXX項這樣,這樣才能真正的將檔案放在伺服器中。 可是純程式碼該怎麼實現呢?? * 可能的解決方案:先在項目目錄下放一個空的rar檔案或者沒什麼功能的exe,msi檔案,然後在後台打包完一些檔案後去替換它,不知道可行不。 (1)首先清空原壓縮包中的內容 (2)將檔案壓縮到壓縮包中 (3)返回 XXX.rar 前端:
<input type="button" id="downloadbutton"/> ajax:
$("#downloadbutton").click(function () { $.ajax({ type: "GET", url: "/Home/download", data: { id: "1" }, dataType:"json", success: function (result) { window.location.target = "_blank"; window.location.href = result; } }) }) 後台:
public string download(int id) { string filePath = "Document/123.msi";//路徑 return filePath; } 這裡,id是沒有什麼作用的,後台就別用什麼server.Mappath了,肯定錯。直接寫伺服器專案檔夾/檔案名稱 即可。 後記:如果有其他好的方法請務必留言,陸續更新。因為這個問題好多人都在網上問,我也試了好多方法。希望幫人幫己。 |