• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Delphi获取公网IP地址函数

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
 1 uses IdHTTP;
 2 function GetPublicIP: string;
 3 var
 4   strIP, URL: string;
 5   iStart, iEnd: Integer;
 6   MyIdHTTP: TIdHTTP;
 7 begin
 8   Result := '';
 9   MyIdHTTP := TIdHTTP.Create(nil);
10   try
11     try
12       URL := MyIdHTTP.Get('http://www.ip138.com/ip2city.asp');
13     except
14     end;
15   finally
16     MyIdHTTP.Free;
17   end;
18   
19   if Length(URL) <> 0 then
20   begin
21     iStart := Pos('[', URL);
22     iEnd := Pos(']', URL);
23     if (iStart <> 0and (iEnd <> 0then
24     begin
25       strIP := Trim(Copy(URL, iStart + 1, iEnd - iStart - 1));
26       if strIP <> '' then
27         Result := strIP;
28     end;
29   end;
30 end;

 

获取公网IP地址函数,需要引用IdHTTP
 1 uses IdHTTP;
 2 function GetPublicIP: string;
 3 var
 4   strIP, URL: string;
 5   iStart, iEnd: Integer;
 6   MyIdHTTP: TIdHTTP;
 7 begin
 8   Result := '';
 9   MyIdHTTP := TIdHTTP.Create(nil);
10   try
11     try
12       URL := MyIdHTTP.Get('http://www.ip138.com/ip2city.asp');
13     except
14     end;
15   finally
16     MyIdHTTP.Free;
17   end;
18   
19   if Length(URL) <> 0 then
20   begin
21     iStart := Pos('[', URL);
22     iEnd := Pos(']', URL);
23     if (iStart <> 0and (iEnd <> 0then
24     begin
25       strIP := Trim(Copy(URL, iStart + 1, iEnd - iStart - 1));
26       if strIP <> '' then
27         Result := strIP;
28     end;
29   end;
30 end;

 

获取公网IP地址函数,需要引用IdHTTP

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
基于MATLAB的中值滤波均值滤波以及高斯滤波的实现发布时间:2022-07-18
下一篇:
基于MATLAB的RGB转YCBCR色彩空间转换发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap