Asp.net 는 일반 처리 프로그램 을 이용 하여 파일 다운로드 기능 을 실현 합 니 다.

먼저 html 페이지 가 있 습 니 다.페이지 에 링크 가 있 습 니 다.링크 를 클릭 하여 팝 업 파일 다운로드/저장(빠 른 레이 다운로드 링크 와 유사)

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title>    </title>
 <meta charset="utf-8" />
</head>
<body>
 <!--     ,1:                     ,            ,       ;2:      App_Data       ,  .net        App_Data     ,    “               hiddenSegment    URL     。”-->
 <a href="App_Data/readme.txt" rel="external nofollow" >  readme.txt  </a>
 <br />
 <a href="DownloadFileHandler.ashx" rel="external nofollow" >  readme.txt  </a>
</body>
</html>
일반 처리 프로그램의 코드 는 다음 과 같다.

using System.IO;
using System.Web;
namespace Zhong.Web
{
 /// <summary>
 /// DownloadFileHandler      
 /// </summary>
 public class DownloadFileHandler : IHttpHandler
 {
  public void ProcessRequest(HttpContext context)
  {
   string filePath = context.Server.MapPath("~/App_Data/readme.txt");
   FileStream fs = new FileStream(filePath, FileMode.Open);
   byte[] bytes = new byte[fs.Length];
   fs.Read(bytes, 0, bytes.Length);
   fs.Dispose();
   context.Response.ContentType = "application/octet-stream";
   context.Response.AddHeader("Content-Disposition", "attachment; filename=readme.txt");
   context.Response.BinaryWrite(bytes);
   context.Response.Flush();
   //          
   //context.Response.ContentType = "application/x-zip-compressed";
   //context.Response.AddHeader("Content-Disposition", "attachment;filename=z.zip");
   //string filename = Server.MapPath("~/App_Data/move.zip");
   //context.Response.TransmitFile(filename);
  }
  public bool IsReusable
  {
   get
   {
    return false;
   }
  }
 }
}
첫 번 째 링크 접근 을 누 르 면 다음 과 같이 표 시 됩 니 다.

두 번 째 링크 를 클릭 하여 파일 다운로드:

전에 테스트 를 한 번 해 봤 기 때문에 이번 다운로드 때 readme(1).txt 라 고 불 렀 습 니 다.

좋은 웹페이지 즐겨찾기