Delphi 는 TActionList 로 파일 을 다운로드 하 는 방법 을 실현 합 니 다.

Delphi 의 TActionList 에는 표준 동작 인 TDownloadURL 이 있 습 니 다.내 부 는 URLDownloadToFile 을 사용 합 니 다.파일 을 다운로드 할 때 정시 에 OnDownloadProgress 이벤트 가 발생 하여 진행 막대 로 표시 할 수 있 습 니 다.
본 고 는 Delphi 가 TActionList 로 파일 을 다운로드 하 는 방법 을 설명 하고 코드 는 다음 과 같다.

uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtActns, ActnList, StdCtrls, ComCtrls;
 
type
 TForm1 = class(TForm)
  Button1: TButton;
  ActionList1: TActionList;
  ProgressBar1: TProgressBar;
  procedure Button1Click(Sender: TObject);
 private
  { Private declarations }
  procedure URL_OnDownloadProgress
       (Sender: TDownLoadURL;
       Progress, ProgressMax: Cardinal;
       StatusCode: TURLDownloadStatus;
       StatusText: String; var Cancel: Boolean) ;
 public
  { Public declarations }
 end;
 
var
 Form1: TForm1;
 
implementation
 
{$R *.dfm}
 
procedure Tform1.URL_OnDownloadProgress;
begin
  ProgressBar1.Max:= ProgressMax;
  ProgressBar1.Position:= Progress;
end;
 
procedure TForm1.Button1Click(Sender: TObject);
begin
  with TDownloadURL.Create(self) do
  try
   URL:='https://www.jb51.net/images/logo.gif';
   FileName := 'logo.gif';
   OnDownloadProgress := URL_OnDownloadProgress;
   ExecuteTarget(nil) ;
  finally
   Free;
  end;
  showMessage('OK');
  ProgressBar1.Max := 0;
end;

좋은 웹페이지 즐겨찾기