如何在Delphi中获取外部(公共)IP

时间:2011-08-10 17:54:59

标签: delphi ip external

我需要从Delphi获取我的外部(公共)IP地址。

例如www.whatismyip.com显示的相同IP。

我该怎么做? Winsock不允许这样做。

5 个答案:

答案 0 :(得分:7)

我认为你不能。好吧,你可以拨打一些服务来告诉你你的IP地址是什么,(例如:http://www.whatismyip.com/)并从响应中找出来。但我不认为你的电脑上的任何东西都能告诉你你的IP地址对外界的影响。

未经测试,但我认为你可以用Indy做到这一点:

MyPublicIP := IdHTTP1.Get('http://automation.whatismyip.com/n09230945.asp');

请在使用前查看规则/政策:http://www.whatismyip.com/faq/automation.asp

答案 1 :(得分:7)

您可以使用此网站:http://ipinfo.io/json。它以JSON格式返回有关您当前互联网连接的信息。

在delphi中,您需要以这种方式使用IdHTTPIdHTTP1.Get('http://ipinfo.io/json') 它将返回包含所有数据的字符串。您可以使用自己喜欢的JSON解释程序,也可以使用lkJSON作为以下示例:

json := TlkJSON.ParseText(MainEstrutura.IdHTTP1.Get('http://ipinfo.io/json')) as TlkJSONobject;

str := json.Field['ip'].Value;

我希望能帮助你。

答案 2 :(得分:2)

这对我有用:

  uses JSON,IdHTTP;
  function GetIP():String;
  var  LJsonObj   : TJSONObject;
  str:string;
  http : TIdHttp;
  begin
    str:='';
    http:=TIdHTTP.Create(nil);
    try
        str:=http.Get('http://ipinfo.io/json');
        LJsonObj:= TJSONObject.ParseJSONValue(TEncoding.ASCII.GetBytes(str),0)           as TJSONObject;
        str := LJsonObj.Get('ip').JsonValue.Value;
        LJsonObj.Free;
        http.Free;
    Except
    end;
    result:=str;
end;

答案 3 :(得分:1)

从记忆中,未经测试:

function GetMyHostAddress: string;
var
   http: IWinHttpRequest;
begin
   http := CreateOleObject('WinHttp.WinHttpRequest5.1') as IWinHttpRequest;
   http.Open('GET', 'http://automation.whatismyip.com/n09230945.asp', False);
   http.Send(EmptyParam);

   if http.StatusCode = 200 then
      Result := http.ResponseText
   else
      Result := '';
end;

答案 4 :(得分:-1)

Function GetMyIP:string;
var
  xmlhttp:olevariant;
  s,p:integer;
  temp:string;
begin
  result:=emptystr;
  xmlhttp:=CreateOleObject('Microsoft.XMLHTTP');
  try
    xmlhttp.open('GET', 'http://www.findipinfo.com/', false);
    xmlhttp.SetRequestHeader('User-Agent','Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3');
    xmlhttp.send(null);
  except
    exit;
  end;
  if(xmlhttp.status = 200) then
  temp:=trim(VarToStr(xmlhttp.responseText));
  xmlhttp:=Unassigned;
  s:=pos('Address Is:',temp);
  if s>0 then
  inc(s,11)
  else
  exit;
  temp:=copy(temp,s,30);
  s:=pos('<',temp);
  if s=0 then exit
  else
  dec(s);
  result:=trim(copy(temp,1,s));
end;