TIdHTTP get下载文件

Posted 西瓜的夏天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TIdHTTP get下载文件相关的知识,希望对你有一定的参考价值。

function Tform1.DownConfigreFile(var errmsg: string; url, name: string): boolean; 
var
  MyStream: TMemoryStream;
begin
  Result := true;
  MyStream := TMemoryStream.Create;
  try
    try
      httpUpdate.Get(url + name, MyStream);
      MyStream.SaveToFile(ExtractFilePath(Application.exename) + name);
    except
      on e: Exception do
      begin
        errmsg := e.Message; // 返回错误信息
        Result := false;
      end;
    end;
  finally
    MyStream.Free;
  end;
end;

  

以上是关于TIdHTTP get下载文件的主要内容,如果未能解决你的问题,请参考以下文章

关于 TIdHttp

谁能解决TIdHTTP.Get超时无响应的问题

使用 Delphi 在 TIdHttp 中的文件下载问题

Delphi xe5 控件TIdhttp的用法post,get解决中文乱码问题

Delphi IDHTTP控件:GET/POST 请求

Delphi IDHTTP控件:GET/POST 请求