获取公网IP

Posted 路人甲zzz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取公网IP相关的知识,希望对你有一定的参考价值。

        private static string GetIP()
        {
            string tempip = "";
            try
            {
                WebRequest wr = WebRequest.Create("http://ip.myhostadmin.net/");
                Stream s = wr.GetResponse().GetResponseStream();
                StreamReader sr = new StreamReader(s, Encoding.Default);
                string all = sr.ReadToEnd(); //读取网站的数据

                all = all.Replace("class=\"STYLE1\">", "*");
                all = all.Replace("</h1>", "&");
                int start = all.IndexOf("*") + 1;
                int end = all.LastIndexOf("&");
                tempip = all.Substring(start, end - start);
                sr.Close();
                s.Close();
            }
            catch
            {
            }
            return tempip;
        }

  

以上是关于获取公网IP的主要内容,如果未能解决你的问题,请参考以下文章

Vue利用搜狐获取公网ip地址

请问如何用java获取公网IP?

是否可以在 iOS 中获取移动数据 IP 地址? (不是服务商的公网IP)

API获取自己的公网IP地址 API查询IP信息

获取本机公网ip(public ip)

怎么才能获得公网IP