当前位置:编程学习 > asp >>

对下载文件进行速度限制

答案:

以前在ASP中一直解决不了易做图的限制的问题,用ISAPI原来可以这么轻松搞定


void CBinaryWrite::Default(CHttpServerContext* pCtxt)
{
 char buf[1024];

 pCtxt->GetServerVariable("HTTP_ALL",buf,1024);

 this->AddHeader(pCtxt,"Content-type = image/jpeg\r\n");
 this->AddHeader(pCtxt,"Content-type = text/plain\r\n");

 StartContent(pCtxt);

 CFile f;
 f.Open("d:\\PHOTO-055.JPG",Cfile::modeRead);

 ULONG flen=f.GetLength();
 ULONG bRead=0;
 ULONG bRealRead=0;


 while (bRead<flen)
 {
  bRealRead=f.Read(buf,(flen-bRead>1024)?1024:(flen-bRead));
  pCtxt->WriteClient(buf,&bRealRead);

  bRead+=bRealRead;
  Sleep(500);

 }

 f.Close();
 EndContent(pCtxt);
}

关键就是这个Sleep,可以放弃CPU资源,让下载过程暂停一定时间,这样通过控制这个暂停的时间,就可以控制速度

上一个:用ASP显示ACCESS数据库的的GIF图象
下一个:ASP+ACCESS实现的无限级目录树

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,