本文整理自网络,侵删。
var
FHTTPClient:TIdHTTP;
begin
FHTTPClient := TIdHTTP.Create( Self );
with FHTTPClient do
begin
Disconnect;
Request.Pragma := 'no-cache';
Request.CacheControl := 'no-cache';
Request.Connection := 'close';
ReadTimeout := 1000 * 60 * 1;//1分钟超时
memo1.Text :=Get( 'http://hk.news.yahoo.com/busi/general/prnewswire/' );
end;
freeandnil(FHTTPClient);
相关阅读 >>
Delphi 如何让scrollbox的内容与滚动条一起实时滚动
winapi 字符及字符串函数(14): chartooem、oemtochar
更多相关阅读请进入《Delphi》频道 >>