最近一个网站做IP导航(如果是国内IP访问,转到中文版,国外IP访问,则转到英文版)的功能,需要用到国内IP段信息。在网上没有找到合适的数据,所以整理了一下。在此和大家分享。
1.整理的数据格式(大家可以根据需要自己调整)
<ChinaIPArea>
<IPArea> <IPStart></IPStart> <IPEnd></IPEnd> <IPArea> <IPArea> <IPStart></IPStart> <IPEnd></IPEnd> <IPArea> <ChinaIPArea>2. 数据来源
IPV4全部IP段列表
3. 提取数据的主要代码
////// 根据文件路径生成XML字符串 /// /// 文件路径 ///public string GetChinaIPArea(string path) { FileInfo file = new FileInfo(path); StringBuilder sbContent = new StringBuilder(); sbContent.AppendLine(" "); using (StreamReader sr = file.OpenText()) { String line; String[] arrIP; while ((line = sr.ReadLine()) != null) { if (line.IndexOf("cn") >= 0 || line.IndexOf("hk") >= 0 || line.IndexOf("tw") >= 0) { sbContent.AppendLine(" "); return sbContent.ToString(); } ///"); arrIP = line.Split(':'); line = arrIP[0]; arrIP = line.Split('-'); sbContent.AppendFormat(" "); } } } sbContent.AppendLine("{0} ", IPToInteger(arrIP[0].Trim())); sbContent.AppendFormat("{0} ", IPToInteger(arrIP[1].Trim())); sbContent.AppendLine("/// 取IP地址前面三项的数字,第二项和第三项不足三位的补0 /// 如:221.207.255.254 --> 221207255,1.0.0.0 --> 1000000 /// /// IP地址 ///public static int IPToInteger(string ip) { string[] arr = ip.Split('.'); string str = arr[0] + arr[1].PadLeft(3, '0') + arr[2].PadLeft(3, '0'); return int.Parse(str); }