GSpring

生活需要理想,却不能理想化的生活

导航

[转载]防止盗链下载问题

转自:http://www.cnblogs.com/Daview/archive/2004/04/24/7436.aspx

以下内容来自防止盗链下载问题,作者Think Different and Think More,由于一时没有收藏,导致需要时找到,幸好在这里发布求助求助一个BLOG的连接地址获得了Hover的帮助,又再现了原文。

由于飞刀(王洪超)的先例的原因,担心防止盗链下载问题哪天不能访问,全转载如下:

防止盗链下载问题

   经常在网络上四处载东西,有时碰到直接拷贝一个类似http://193.100.100.56/TestWebSolution/WebApplication1/test.rar地址准备下载test.rar文件时,却被告知没有登录或者直接跳转到其他页面的情况,然后等登录后直接下载该文件。要实现上面情况,在.NET世界里是比较容易的。
1、  首先创建一个类库项目ClassLibrary1,实现如下(点这里查看):

using System;
using System.Web;    // 引用System.Web组件
 
namespace ClassLibrary1
{
    public class MyHandler : IHttpHandler
    {
        public MyHandler()
        {
        }
 
        #region IHttpHandler 成员
        public void ProcessRequest(HttpContext context)
        {
            // 跳转到WebForm1.aspx,由WebForm1.aspx输出rar文件
            HttpResponse response = context.Response;
    response.Redirect("http://193.100.100.56/TestWebSolution/WebApplication1/WebForm1.aspx");
        }
 
        public bool IsReusable
        {
            get
            {
                // TODO:  添加 MyHandler.IsReusable getter 实现
                return true;
            }
        }
        #endregion
    }
}

 
2、  创建测试用的Web项目WebApplication1。在配置文件Web.config文件节点里增加如下节点:
  <httpHandlers>
               <add verb="*" path="*.rar" type="ClassLibrary1.MyHandler, ClassLibrary1" />
httpHandlers>
 
3、  在WebForm1.aspx里增加一个文本为“下载”的Button,其Click事件如下(点这里查看):

FileInfo file = new System.IO.FileInfo(@"G:\WebCenter\TestWebSolution\WebApplication1\test.rar");
// FileInfo 类在 System.IO 命名空间里
              Response.Clear();
              Response.AddHeader("Content-Disposition", "filename=" + file.Name);
              Response.AddHeader("Content-Length", file.Length.ToString());
              string fileExtension = file.Extension;
 
              // 根据文件后缀指定文件的Mime类型
              switch (fileExtension)
              {
                   case ".mp3":
                       Response.ContentType = "audio/mpeg3";
                       break;
                   case "mpeg":
                       Response.ContentType = "video/mpeg";
                       break;
                   case "jpg":
                       Response.ContentType = "image/jpeg";
                       break;
                   case "........等等":
                       Response.ContentType = "....";
                       break;
                   default:
                       Response.ContentType = "application/octet-stream";
                       break;
              }
 
              Response.WriteFile(file.FullName);
              Response.End();

 
 
4、  最后一步就是在IIS里增加一个应用程序扩展。在“默认网站”->“属性”->“主目录”->“配置”。在弹出的“应用程序配置”窗口里按“添加”,在弹出的“添加/编辑应用程序扩展名映射”窗口里“可执行文件”选择C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,在扩展名里输入“.rar”,然后确定即可。
 
5、  在IE里输入http://193.100.100.56/TestWebSolution/WebApplication1/test.rar,会立即跳转到http://193.100.100.56/TestWebSolution/WebApplication1/WebForm1.aspx,然后按WebForm1.aspx的“下载”按钮就可以下载test.rar了。
 
6、  当然,这里只按例子给个思路,完全可以再根据自身情况扩展。下面有几个参考的资源文章:

posted on 2005-05-28 18:42  Chep  阅读(691)  评论(0编辑  收藏  举报