delphi IDHTTP超时重定向


本文整理自网络,侵删。

 function Get(URL: string): boolean;
var
IDHTTP: TIDHttp;
ss: String;
begin
Result:= False;
IDHTTP:= TIDHTTP.Create(nil);
try
try
idhttp.HandleRedirects:= true; //必须支持重定向否则可能出错
idhttp.ReadTimeout:= 30000; //超过这个时间则不再访问
ss:= IDHTTP.Get(URL);
if IDHTTP.ResponseCode=200 then
Result :=true;
except
end;
finally
IDHTTP.Free;
end;
end;

相关阅读 >>

Delphi format函数的用法

Delphi启动/停止windows服务,启动类型修改为"自动"

Delphi 在tedit中显示水印提示

Delphi firemonkey在画布上绘制 imagelist图像

Delphi 创建快捷方式的单元文件

Delphi 的链式代码

Delphi控制程序在任务栏显示与隐藏

Delphi的format使用总结

Delphi win32_networkadapter 网卡 参数说明

Delphi 免杀下载者源代码

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...