首页 > 代码库 > MVC 如何获取外网IP
MVC 如何获取外网IP
1 public string GetIP() 2 { 3 string tempIp = ""; 4 WebRequest wr = WebRequest.Create("http://city.ip138.com/ip2city.asp"); 5 Stream s = wr.GetResponse().GetResponseStream(); 6 StreamReader sr = new StreamReader(s, Encoding.Default); 7 string all = sr.ReadToEnd(); 8 int start = all.IndexOf("[") + 1; 9 int end = all.IndexOf("]", start);10 tempIp = all.Substring(start, end - start);11 sr.Close();12 s.Close();13 return tempIp;14 }
这种获取IP的方式是根据 http://city.ip138.com/ip2city.asp 来获取的,最后已截取字符串结束
MVC 如何获取外网IP
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。