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

获取公网IP

时间:2016-10-08 16:32:46      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

        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

标签:

原文地址:http://www.cnblogs.com/hz1234/p/5939026.html

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