http文件下载

http://www.enet.com.cn/eschool/inforcenter/A20040429306316.html
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls,ShellApi,URLMon;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
    function DownloadFile(Source, Dest: string): Boolean;
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  if DownloadFile('http://cc.hbu.edu.cn/jackfan/wbx.exe', 'c:/rd.exe') then
    ShowMessage('Download succesful')
  else ShowMessage('Download unsuccesful');
end;

function TForm1.DownloadFile(Source, Dest: string): Boolean;
begin
  try
    Result := UrlDownloadToFile(nil, PChar(source), PChar(Dest), 0, nil) = 0;
  except
    Result := False;
  end;
end;

end.

例子二:

Uses URLMon, ShellApi;
  function DownloadFile(SourceFile, DestFile: string): Boolean;
  begin
   try
   Result := UrlDownloadToFile(nil, PChar(SourceFile), PChar(DestFile), 0, nil) = 0;
   except
   Result := False;
   end;
  end;
  procedure TForm1.Button1.Click(Sender: TObject);
  const
   // URL Location
   SourceFile := 'http://www.google.com/intl/de/images/home_title.gif';
   // Where to save the file
   DestFile := 'c:/temp/google-image.gif';
  begin
   if DownloadFile(SourceFile, DestFile) then
   begin
   ShowMessage('Download succesful!');
   // Show downloaded image in your browser
   ShellExecute(Application.Handle,PChar('open'),PChar(DestFile),PChar(''),nil,SW_NORMAL)
   end
   else
   ShowMessage('Error while downloading ' + SourceFile)
  end; 

还可以用NMHTTP控件
NMHTTP1.InputFileMode := ture;
  NMHTTP1.Body := '本地文件名';
  NMHTTP1.Header := 'Head.txt';
  NMHTTP1.OutputFileMode := FALSE;
  NMHTTP1.ReportLevel := Status_Basic;
  NMHTTP1.Proxy := '代理服务器IP地址';
  NMHTTP1.ProxyPort := '代理服务器的端口号';
  With NMHTTP1.HeaderInfo do
  Begin
  Cookie := '';
  LocalMailAddress := '';
  LocalProgram := '';
  Referer := '';
  UserID := '用户名称';
  Password := '用户口令';
  End;
  NMHTTP1.Get(‘http://www.abcdefg.com/software/a.zip’);

  试试吧,Delphi的目录中有TNMHTTP控件的例子。NT4+,Win95+,IE3+,你可以用URL Moniker的功能。  

  uses URLMon;
  ...
  OleCheck(URLDownloadToFile(nil,'URL','Filename',0,nil));  

  其中最后一个参数你还可以传入一个IBindStatusCallback的实现以跟踪下载进度或控制中止下载。简单的场合一句话就搞定了。

  --回复得分 0-- 

  BTW, URL Moniker封装了大多数URL,而不是像NMHTTP那样封装协议,因此你可以用URLDownloadToFile下载HTTP,FTP甚至本地文件和局域网文件,还有其他的custom moniker,比如MSITSTORE(MSDN Library的文档moniker实现)。 

  用IdHTTP控件吧!

  var
   DownLoadFile:TFileStream;
  beginio
   DownLoadFile:=TFileStream.Create('c:/aa.rar',fmCreate);
   IdHTTP1.Get('http://www.sina.com.cn/download/aa.rar',DownLoadFile);
   DownLoadFile.Free;
  end;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值