C# Winform程序获取外网IP地址

不打扰是莪最后的温柔 提交于 2019-12-31 05:36:19
string strUrl = "http://www.ip138.com/ip2city.asp"; //获得IP的网址了            Uri uri = new Uri(strUrl);            System.Net.WebRequest wr = System.Net.WebRequest.Create(uri);            System.IO.Stream s = wr.GetResponse().GetResponseStream();            System.IO.StreamReader sr = new System.IO.StreamReader(s, Encoding.Default);            string all = sr.ReadToEnd(); //读取网站的数据            int i = all.IndexOf("[") + 1;            string tempip = all.Substring(i, 15);            string ip = tempip.Replace("]", "").Replace(" ", "");//找出ip
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!