delphi 如何获取网页中的文字信息
delphi 如何获取网页中的文字信息
日期:2016-11-27 01:23:18 人气: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.Request.UserAgent