淺談ASP.NET中檔案下載函式使用方法
ASP.NET檔案下載函式使用是什麼情況呢?在你的Page_Load中新增這樣的程式碼:
Page.Response.Clear();
bool success = ResponseFile(Page.Request, Page.Response, "目的檔名稱", @"原始檔路徑", 1024000);
if (!success) Response.Write("下載檔案出錯!"); Page.Response.End();
ASP.NET檔案下載函式程式碼為:
public static bool ResponseFile(HttpRequest _Request,HttpResponse _Response,string _fileName,string _fullPath, long _speed) {
try
{
FileStream myFile = new FileStream(_fullPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
BinaryReader br = new BinaryReader(myFile);
try
{
_Response.AddHeader("Accept-Ranges", "bytes"
);
_Response.Buffer = false;
long fileLength = myFile.Length;
long startBytes = 0; double pack = 10240;
//10K bytes
//int sleep = 200;
//每秒5次 即5*10K bytes每秒 int sleep = (int)Math.Floor(1000 * pack / _speed) + 1;
if (_Request.Headers["Range"] != null)
{
_Response.StatusCode = 206;
string[] range = _Request.Headers["Range"].Split(new char[] {'=', '-'});
startBytes = Convert.ToInt64(range[1]);
}
_Response.AddHeader("Content-Length", (fileLength - startBytes).ToString());
if (startBytes != 0) {
//Response.AddHeader("Content-Range", string.Format(" bytes {0}-{1}/{2}", startBytes, fileLength-1, fileLength));
}
_Response.AddHeader("Connection", "Keep-Alive");
_Response.ContentType = "application/octet-stream";
_Response.AddHeader("Content-Disposition","attachment; filename=" + HttpUtility.UrlEncode(_fileName,System.Text.Encoding.UTF8) ); br.BaseStream.Seek(startBytes, SeekOrigin.Begin);
int maxCount = (int) Math.Floor((fileLength - startBytes) / pack) + 1;
for (int i = 0; i < maxCount; i++) { if (_Response.IsClientConnected) { _Response.BinaryWrite(br.ReadBytes(int.Parse(pack.ToString()))); Thread.Sleep(sleep);
} else { i=maxCount;
}
} }
catch
{
return false;
}
finally
{
br.Close();
myFile.Close();
}
}
catch
{
return false;
}
return true;
}
這樣就實現了檔案下載時,不管是什麼格式的檔案,都能夠彈出開啟/儲存視窗.
ASP.NET檔案下載函式的基本情況就向你介紹到這裡,希望對你瞭解ASP.NET檔案下載函式有所幫助。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-626896/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 淺談Swift中的函式式Swift函式
- 淺談Kotlin中的函式Kotlin函式
- 淺談生成函式函式
- 淺談eval函式函式
- 淺談尤拉函式函式
- 淺談hosts檔案
- 淺談php count()函式方法PHP函式
- 淺談 Android Dex 檔案Android
- 淺談js函式節流和函式防抖JS函式
- 淺談Numpy中的shape、reshape函式的區別函式
- 淺談匿名函式和閉包函式
- Asp.net C# 檔案下載,附件下載程式碼案例,不顯示檔案路徑ASP.NETC#
- 【ASP.NET Core】Blazor+MiniAPI完成檔案下載ASP.NETBlazorAPI
- 簡談檔案下載的三種方式
- 淺談C語言中函式的使用C語言函式
- algorithm標頭檔案下的常用函式Go函式
- 微信小程式開發 -- 通過雲函式下載任意檔案微信小程式函式
- Sql中SYSDATE函式的使用方法SQL函式
- Python中zip函式的使用方法Python函式
- Java script 中的函式使用方法Java函式
- Django中 render() 函式的使用方法Django函式
- 談談JS中的函式劫持JS函式
- 【原創】淺談指標(十一)alloca函式指標函式
- Python中open函式怎麼操作檔案Python函式
- 檔案下載
- Python列表中set函式的使用方法!Python函式
- springcloud中feign檔案上傳、下載SpringGCCloud
- JS function 是函式也是物件, 淺談原型鏈JSFunction函式物件原型
- 淺談JS變數宣告和函式宣告提升JS變數函式
- 淺談 PHP 中的 Trait 使用方法,報錯如何解決PHPAI
- JAVA檔案下載Java
- Response下載檔案
- HttpClient 下載檔案HTTPclient
- FastApi下載檔案ASTAPI
- 00、下載檔案
- Ajax 下載檔案
- js 檔案下載JS
- 淺談Kotlin中集合和函式式API完全解析-上篇(八)Kotlin函式API
- 檔案程式設計、檔案下載程式設計