最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

Asp.net下載功能的解決方案代碼

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 22:44:36
文檔

Asp.net下載功能的解決方案代碼

Asp.net下載功能的解決方案代碼:1. 首先新建一個用于進(jìn)行下載處理的page頁,如download.aspx,里面什么東西也沒有。 2. 添加一個DownloadHandler類,它繼承于IHttpHandler接口,可以用來自定義HTTP 處理程序同步處理HTTP的請求。 public class DownloadHandler
推薦度:
導(dǎo)讀Asp.net下載功能的解決方案代碼:1. 首先新建一個用于進(jìn)行下載處理的page頁,如download.aspx,里面什么東西也沒有。 2. 添加一個DownloadHandler類,它繼承于IHttpHandler接口,可以用來自定義HTTP 處理程序同步處理HTTP的請求。 public class DownloadHandler

1. 首先新建一個用于進(jìn)行下載處理的page頁,如download.aspx,里面什么東西也沒有。
2. 添加一個DownloadHandler類,它繼承于IHttpHandler接口,可以用來自定義HTTP 處理程序同步處理HTTP的請求。
public class DownloadHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
HttpResponse Response = context.Response;
HttpRequest Request = context.Request;
System.IO.Stream iStream = null;
byte[] buffer = new Byte[10240];
int length;
long dataToRead;
try
{
string filename = FileHelper.Decrypt(Request["fn"]); //通過解密得到文件名
string filepath = HttpContext.Current.Server.MapPath("~/") + "files/" + filename; //待下載的文件路徑
iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open,
System.IO.FileAccess.Read, System.IO.FileShare.Read);
Response.Clear();
dataToRead = iStream.Length;
long p = 0;
if (Request.Headers["Range"] != null)
{
Response.StatusCode = 206;
p = long.Parse(Request.Headers["Range"].Replace("bytes=", "").Replace("-", ""));
}
if (p != 0)
{
Response.AddHeader("Content-Range", "bytes " + p.ToString() + "-" + ((long)(dataToRead - 1)).ToString() + "/" + dataToRead.ToString());
}
Response.AddHeader("Content-Length", ((long)(dataToRead - p)).ToString());
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode(System.Text.Encoding.GetEncoding(65001).GetBytes(Path.GetFileName(filename))));
iStream.Position = p;
dataToRead = dataToRead - p;
while (dataToRead > 0)
{
if (Response.IsClientConnected)
{
length = iStream.Read(buffer, 0, 10240);
Response.OutputStream.Write(buffer, 0, length);
Response.Flush();
buffer = new Byte[10240];
dataToRead = dataToRead - length;
}
else
{
dataToRead = -1;
}
}
}
catch (Exception ex)
{
Response.Write("Error : " + ex.Message);
}
finally
{
if (iStream != null)
{
iStream.Close();
}
Response.End();
}
}
public bool IsReusable
{
get { return true; }
}
}
3. 這里涉及到一個文件名加解密的問題,是為了防止文件具體名稱暴露在狀態(tài)欄中,所以添加一個FileHelper類,代碼如下:
public class FileHelper
{
public static string Encrypt(string filename)
{
byte[] buffer = HttpContext.Current.Request.ContentEncoding.GetBytes(filename);
return HttpUtility.UrlEncode(Convert.ToBase64String(buffer));
}
public static string Decrypt(string encryptfilename)
{
byte[] buffer = Convert.FromBase64String(encryptfilename);
return HttpContext.Current.Request.ContentEncoding.GetString(buffer);
}
}
利用Base64碼對文件名進(jìn)行加解密處理。
4. 在Web.config上,添加httpHandlers結(jié)點,如下:
<system.web>
<httpHandlers>
<add verb="*" path="download.aspx" type="DownloadHandler" />
</httpHandlers>
</system.web>
5. 現(xiàn)在新建一個aspx頁面,對文件進(jìn)行下載:
Default.aspx代碼如下:
Default.aspx Code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>文件下載</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:HyperLink ID="link" runat="server" Text="文件下載"></asp:HyperLink>
</div>
</form>
</body>
</html>
Default.aspx.cs代碼如下:
Default.aspx.cs Code
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string url = FileHelper.Encrypt("DesignPattern.chm");
link.NavigateUrl = "~/download.aspx?fn=" + url;
}
}

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Asp.net下載功能的解決方案代碼

Asp.net下載功能的解決方案代碼:1. 首先新建一個用于進(jìn)行下載處理的page頁,如download.aspx,里面什么東西也沒有。 2. 添加一個DownloadHandler類,它繼承于IHttpHandler接口,可以用來自定義HTTP 處理程序同步處理HTTP的請求。 public class DownloadHandler
推薦度:
標(biāo)簽: 下載 下載的 download
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top