DELPHI获取网页内容
DELPHI获取网页内容
日期:2017-10-09 01:49:17 人气:1
//试下用idhttp
uses IdHTTP;
function GetWebPage(const Url :string; IsUtf8 :Boolean = False):string;
var
idp :TIdHTTP;
begin
Result := '';
idp := TIdHTTP.Create(Application);
try
idp.HandleRedirects := True;
idp.R