本文整理自网络,侵删。
function TThreadSpider.GetHtml(url: string): string;
var
html: string;
begin
try
html := Fhttp.Get(url);
except
html := '';
end;
Result := html;
end;
相关阅读 >>
Delphi 官方 processmessages 用法代码例子
Delphi中调用api函数exitwindowsex可以实现系统的关机,注销,和重启
更多相关阅读请进入《Delphi》频道 >>