码迷,mamicode.com
首页 > 其他好文 > 详细

六行代码获取本地IP

时间:2015-03-13 18:48:59      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

uses IdIPWatch;

function GetNativeIP: String;
var
  IdIPWatch: TIdIPWatch;
begin
  IdIPWatch := TIdIPWatch.Create(nil);
  try
    Result := IdIPWatch.LocalIP;
  finally
    IdIPWatch.Free;
  end;
end;


DelphiXE7下编写。

六行代码获取本地IP

标签:

原文地址:http://blog.csdn.net/dbyoung/article/details/44243921

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!