使用Delphi和Indy,使用Progress事件以编程方式从Internet下载文件

前端之家收集整理的这篇文章主要介绍了使用Delphi和Indy,使用Progress事件以编程方式从Internet下载文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要一种使用Delphi通过HTTP从Internet下载文件方法,
包括Progress事件,我正在寻找一种使用Indy组件的方法.

我使用的是Delphi 7.

提前致谢.

解决方法

我已经编写了这个例子,只用一个HTTP GET,与Indy 10,希望它与Indy 9一起工作:
uses
  {...} IdHTTP,IdComponent;

type
  TFormMain = class(TForm)
    {...}
  private
    {...}
    procedure HttpWork(ASender: TObject; AWorkMode: TWorkMode; AWorkCount: Int64);
  end;
{...}

procedure TFormMain.Button1Click(Sender: TObject);
var
  Http: TIdHTTP;
  MS: TMemoryStream;
begin
  Http := TIdHTTP.Create(nil);
  try
    MS := TMemoryStream.Create;
    try
      Http.OnWork:= HttpWork;

      Http.Get('http://live.sysinternals.com/ADExplorer.exe',MS);
      MS.SaveToFile('C:\ADExplorer.exe');

    finally
      MS.Free;
    end;
  finally
    Http.Free;
  end;
end;

procedure TFormMain.HttpWork(ASender: TObject; AWorkMode: TWorkMode; AWorkCount: Int64);
var
  Http: TIdHTTP;
  ContentLength: Int64;
  Percent: Integer;
begin
  Http := TIdHTTP(ASender);
  ContentLength := Http.Response.ContentLength;

  if (Pos('chunked',LowerCase(Http.Response.TransferEncoding)) = 0) and
     (ContentLength > 0) then
  begin
    Percent := 100*AWorkCount div ContentLength;

    MemoOutput.Lines.Add(IntToStr(Percent));
  end;
end;
原文链接:https://www.f2er.com/delphi/102849.html

猜你在找的Delphi相关文章