Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a way to download a file from the Internet using Delphi via HTTP, Wich include an Progress event , I'm looking for a method wich uses the Indy components.

I am using Delphi 7.

Thanks in advance.

share|improve this question

1 Answer

up vote 13 down vote accepted

I've coded this example, using just one HTTP GET, with Indy 10, hope it works with Indy 9 too:

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;
share|improve this answer
1  
The Response.ContentLength value is not always valid. In particular, in HTTP 1.1 replies that use the "chunked" transfer encoding, the "Content-Length" header is not allowed to be used. During chunked transfers, the total size of the data is not known ahead of time, as the data is transmitted in multiple blocks, and each block has its own size internally. – Remy Lebeau Feb 4 '10 at 2:47
1  
Better? Now I use exactly the same conditions as in TIdCustomHTTP.ReadResult() inside the IdHTTP.pas unit – ulrichb Feb 4 '10 at 14:11
2  
and don't forget to write Application.ProcessMessages(); on OnWork event! – Suhrob Samiev Dec 3 '11 at 5:37
4  
Don't use Application.ProcessMessages(). That will pump the message queue for ALL pending messages, which can cause side effects and reentry problems if you are not careful. Better to use the TForm.Update() method instead to process only pending paint messages and no others. – Remy Lebeau Jan 7 '12 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.