JAVA解析纯真IP地址库

前几天看了下Ruby的IPParse,觉得很过瘾,上网查了下貌似很多IP数据库都要收费的,就下了个纯真QQIP地址库,发现还可以在线升级的,很适合咱做点小玩意。具体解析的纯真版IP地址库请详见 http://lumaqq.linuxsir.org/article/qqwry_format_detail.html,这里就不多叙述了。
看下JAVA代码中怎么解析IP的吧。 (代码参考至lumaQQ.谢谢开源作者luma)


解析的主类
Java代码 复制代码 收藏代码
  1. package com.showtime.IPparse; 
  2.  
  3. import java.io.File; 
  4. import java.io.FileNotFoundException; 
  5. import java.io.IOException; 
  6. import java.io.RandomAccessFile; 
  7. import java.nio.ByteOrder; 
  8. import java.nio.MappedByteBuffer; 
  9. import java.nio.channels.FileChannel; 
  10. import java.util.ArrayList; 
  11. import java.util.HashMap; 
  12. import java.util.List; 
  13. import java.util.Map; 
  14. import com.showtime.util.LogFactory; 
  15. import org.apache.log4j.Level; 
  16.  
  17. public class IPSeeker { 
  18.     //纯真IP数据库名 
  19.     private String IP_FILE="QQWry.Dat"
  20.     //保存的文件夹 
  21.     private String INSTALL_DIR="f:/qqwry"
  22.      
  23.      
  24.     // 一些固定常量,比如记录长度等等 
  25.     private static final int IP_RECORD_LENGTH = 7
  26.     private static final byte REDIRECT_MODE_1 = 0x01
  27.     private static final byte REDIRECT_MODE_2 = 0x02
  28.      
  29.     // 用来做为cache,查询一个ip时首先查看cache,以减少不必要的重复查找 
  30.     private Map<String, IPLocation> ipCache; 
  31.     // 随机文件访问类 
  32.     private RandomAccessFile ipFile; 
  33.     // 内存映射文件 
  34.     private MappedByteBuffer mbb; 
  35.     // 起始地区的开始和结束的绝对偏移 
  36.     private long ipBegin, ipEnd; 
  37.     // 为提高效率而采用的临时变量 
  38.     private IPLocation loc; 
  39.     private byte[] buf; 
  40.     private byte[] b4; 
  41.     private byte[] b3; 
  42.      
  43.     public IPSeeker(String fileName,String dir)  { 
  44.         this.INSTALL_DIR=dir; 
  45.         this.IP_FILE=fileName; 
  46.         ipCache = new HashMap<String, IPLocation>(); 
  47.         loc = new IPLocation(); 
  48.         buf = new byte[100]; 
  49.         b4 = new byte[4]; 
  50.         b3 = new byte[3]; 
  51.         try
  52.             ipFile = new RandomAccessFile(IP_FILE, "r"); 
  53.         } catch (FileNotFoundException e) { 
  54.             // 如果找不到这个文件,再尝试再当前目录下搜索,这次全部改用小写文件名 
  55.             //     因为有些系统可能区分大小写导致找不到ip地址信息文件 
  56.             String filename = new File(IP_FILE).getName().toLowerCase(); 
  57.             File[] files = new File(INSTALL_DIR).listFiles(); 
  58.             for(int i = 0; i < files.length; i++) { 
  59.                 if(files[i].isFile()) { 
  60.                     if(files[i].getName().toLowerCase().equals(filename)) { 
  61.                         try
  62.                             ipFile = new RandomAccessFile(files[i], "r"); 
  63.                         } catch (FileNotFoundException e1) { 
  64.                             LogFactory.log("IP地址信息文件没有找到,IP显示功能将无法使用",Level.ERROR,e1); 
  65.                             ipFile = null
  66.                         } 
  67.                         break
  68.                     } 
  69.                 } 
  70.             } 
  71.         }  
  72.         // 如果打开文件成功,读取文件头信息 
  73.         if(ipFile != null) { 
  74.             try
  75.                 ipBegin = readLong4(0); 
  76.                 ipEnd = readLong4(4); 
  77.                 if(ipBegin == -1 || ipEnd == -1) { 
  78.                     ipFile.close(); 
  79.                     ipFile = null
  80.                 }            
  81.             } catch (IOException e) { 
  82.                 LogFactory.log("IP地址信息文件格式有错误,IP显示功能将无法使用",Level.ERROR,e); 
  83.                 ipFile = null
  84.             }            
  85.         } 
  86.     } 
  87.      
  88.      
  89.     /**
  90.      * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
  91.      * @param s 地点子串
  92.      * @return 包含IPEntry类型的List
  93.      */ 
  94.     public List getIPEntriesDebug(String s) { 
  95.         List<IPEntry> ret = new ArrayList<IPEntry>(); 
  96.         long endOffset = ipEnd + 4
  97.         for(long offset = ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) { 
  98.             // 读取结束IP偏移 
  99.             long temp = readLong3(offset); 
  100.             // 如果temp不等于-1,读取IP的地点信息 
  101.             if(temp != -1) { 
  102.                 IPLocation ipLoc = getIPLocation(temp); 
  103.                 // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续 
  104.                 if(ipLoc.getCountry().indexOf(s) != -1 || ipLoc.getArea().indexOf(s) != -1) { 
  105.                     IPEntry entry = new IPEntry(); 
  106.                     entry.country = ipLoc.getCountry(); 
  107.                     entry.area = ipLoc.getArea(); 
  108.                     // 得到起始IP 
  109.                     readIP(offset - 4, b4); 
  110.                     entry.beginIp = Util.getIpStringFromBytes(b4); 
  111.                     // 得到结束IP 
  112.                     readIP(temp, b4); 
  113.                     entry.endIp = Util.getIpStringFromBytes(b4); 
  114.                     // 添加该记录 
  115.                     ret.add(entry); 
  116.                 } 
  117.             } 
  118.         } 
  119.         return ret; 
  120.     } 
  121.      
  122.     public IPLocation getIPLocation(String ip){ 
  123.         IPLocation location=new IPLocation(); 
  124.         location.setArea(this.getArea(ip)); 
  125.         location.setCountry(this.getCountry(ip)); 
  126.         return location; 
  127.     } 
  128.      
  129.     /**
  130.      * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
  131.      * @param s 地点子串
  132.      * @return 包含IPEntry类型的List
  133.      */ 
  134.     public List<IPEntry> getIPEntries(String s) { 
  135.         List<IPEntry> ret = new ArrayList<IPEntry>(); 
  136.         try
  137.             // 映射IP信息文件到内存中 
  138.             if(mbb == null) { 
  139.                 FileChannel fc = ipFile.getChannel(); 
  140.                 mbb = fc.map(FileChannel.MapMode.READ_ONLY, 0, ipFile.length()); 
  141.                 mbb.order(ByteOrder.LITTLE_ENDIAN);              
  142.             } 
  143.              
  144.             int endOffset = (int)ipEnd; 
  145.             for(int offset = (int)ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) { 
  146.                 int temp = readInt3(offset); 
  147.                 if(temp != -1) { 
  148.                     IPLocation ipLoc = getIPLocation(temp); 
  149.                     // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续 
  150.                     if(ipLoc.getCountry().indexOf(s) != -1 || ipLoc.getArea().indexOf(s) != -1) { 
  151.                         IPEntry entry = new IPEntry(); 
  152.                         entry.country = ipLoc.getCountry(); 
  153.                         entry.area = ipLoc.getArea(); 
  154.                         // 得到起始IP 
  155.                         readIP(offset - 4, b4); 
  156.                         entry.beginIp = Util.getIpStringFromBytes(b4); 
  157.                         // 得到结束IP 
  158.                         readIP(temp, b4); 
  159.                         entry.endIp = Util.getIpStringFromBytes(b4); 
  160.                         // 添加该记录 
  161.                         ret.add(entry); 
  162.                     } 
  163.                 } 
  164.             }            
  165.         } catch (IOException e) { 
  166.             LogFactory.log("",Level.ERROR,e); 
  167.         } 
  168.         return ret; 
  169.     } 
  170.  
  171.     /**
  172.      * 从内存映射文件的offset位置开始的3个字节读取一个int
  173.      * @param offset
  174.      * @return
  175.      */ 
  176.     private int readInt3(int offset) { 
  177.         mbb.position(offset); 
  178.         return mbb.getInt() & 0x00FFFFFF
  179.     } 
  180.  
  181.     /**
  182.      * 从内存映射文件的当前位置开始的3个字节读取一个int
  183.      * @return
  184.      */ 
  185.     private int readInt3() { 
  186.         return mbb.getInt() & 0x00FFFFFF
  187.     } 
  188.      
  189.     /**
  190.      * 根据IP得到国家名
  191.      * @param ip ip的字节数组形式
  192.      * @return 国家名字符串
  193.      */ 
  194.     public String getCountry(byte[] ip) { 
  195.         // 检查ip地址文件是否正常 
  196.         if(ipFile == null)  
  197.             return Message.bad_ip_file; 
  198.         // 保存ip,转换ip字节数组为字符串形式 
  199.         String ipStr = Util.getIpStringFromBytes(ip); 
  200.         // 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件 
  201.         if(ipCache.containsKey(ipStr)) { 
  202.             IPLocation ipLoc = ipCache.get(ipStr); 
  203.             return ipLoc.getCountry(); 
  204.         } else
  205.             IPLocation ipLoc = getIPLocation(ip); 
  206.             ipCache.put(ipStr, ipLoc.getCopy()); 
  207.             return ipLoc.getCountry(); 
  208.         } 
  209.     } 
  210.      
  211.     /**
  212.      * 根据IP得到国家名
  213.      * @param ip IP的字符串形式
  214.      * @return 国家名字符串
  215.      */ 
  216.     public String getCountry(String ip) { 
  217.         return getCountry(Util.getIpByteArrayFromString(ip)); 
  218.     } 
  219.      
  220.     /**
  221.      * 根据IP得到地区名
  222.      * @param ip ip的字节数组形式
  223.      * @return 地区名字符串
  224.      */ 
  225.     public String getArea(byte[] ip) { 
  226.         // 检查ip地址文件是否正常 
  227.         if(ipFile == null)  
  228.             return Message.bad_ip_file; 
  229.         // 保存ip,转换ip字节数组为字符串形式 
  230.         String ipStr = Util.getIpStringFromBytes(ip); 
  231.         // 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件 
  232.         if(ipCache.containsKey(ipStr)) { 
  233.             IPLocation ipLoc = ipCache.get(ipStr); 
  234.             return ipLoc.getArea(); 
  235.         } else
  236.             IPLocation ipLoc = getIPLocation(ip); 
  237.             ipCache.put(ipStr, ipLoc.getCopy()); 
  238.             return ipLoc.getArea(); 
  239.         } 
  240.     } 
  241.      
  242.     /**
  243.      * 根据IP得到地区名
  244.      * @param ip IP的字符串形式
  245.      * @return 地区名字符串
  246.      */ 
  247.     public String getArea(String ip) { 
  248.         return getArea(Util.getIpByteArrayFromString(ip)); 
  249.     } 
  250.      
  251.     /**
  252.      * 根据ip搜索ip信息文件,得到IPLocation结构,所搜索的ip参数从类成员ip中得到
  253.      * @param ip 要查询的IP
  254.      * @return IPLocation结构
  255.      */ 
  256.     private IPLocation getIPLocation(byte[] ip) { 
  257.         IPLocation info = null
  258.         long offset = locateIP(ip); 
  259.         if(offset != -1
  260.             info = getIPLocation(offset); 
  261.         if(info == null) { 
  262.             info = new IPLocation(); 
  263.             info.setCountry (  Message.unknown_country); 
  264.             info.setArea(Message.unknown_area); 
  265.         } 
  266.         return info; 
  267.     }    
  268.  
  269.     /**
  270.      * 从offset位置读取4个字节为一个long,因为java为big-endian格式,所以没办法
  271.      * 用了这么一个函数来做转换
  272.      * @param offset
  273.      * @return 读取的long值,返回-1表示读取文件失败
  274.      */ 
  275.     private long readLong4(long offset) { 
  276.         long ret = 0
  277.         try
  278.             ipFile.seek(offset); 
  279.             ret |= (ipFile.readByte() & 0xFF); 
  280.             ret |= ((ipFile.readByte() << 8) & 0xFF00); 
  281.             ret |= ((ipFile.readByte() << 16) & 0xFF0000); 
  282.             ret |= ((ipFile.readByte() << 24) & 0xFF000000); 
  283.             return ret; 
  284.         } catch (IOException e) { 
  285.             return -1
  286.         } 
  287.     } 
  288.  
  289.     /**
  290.      * 从offset位置读取3个字节为一个long,因为java为big-endian格式,所以没办法
  291.      * 用了这么一个函数来做转换
  292.      * @param offset 整数的起始偏移
  293.      * @return 读取的long值,返回-1表示读取文件失败
  294.      */ 
  295.     private long readLong3(long offset) { 
  296.         long ret = 0
  297.         try
  298.             ipFile.seek(offset); 
  299.             ipFile.readFully(b3); 
  300.             ret |= (b3[0] & 0xFF); 
  301.             ret |= ((b3[1] << 8) & 0xFF00); 
  302.             ret |= ((b3[2] << 16) & 0xFF0000); 
  303.             return ret; 
  304.         } catch (IOException e) { 
  305.             return -1
  306.         } 
  307.     }    
  308.      
  309.     /**
  310.      * 从当前位置读取3个字节转换成long
  311.      * @return 读取的long值,返回-1表示读取文件失败
  312.      */ 
  313.     private long readLong3() { 
  314.         long ret = 0
  315.         try
  316.             ipFile.readFully(b3); 
  317.             ret |= (b3[0] & 0xFF); 
  318.             ret |= ((b3[1] << 8) & 0xFF00); 
  319.             ret |= ((b3[2] << 16) & 0xFF0000); 
  320.             return ret; 
  321.         } catch (IOException e) { 
  322.             return -1
  323.         } 
  324.     } 
  325.    
  326.     /**
  327.      * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
  328.      * 文件中是little-endian形式,将会进行转换
  329.      * @param offset
  330.      * @param ip
  331.      */ 
  332.     private void readIP(long offset, byte[] ip) { 
  333.         try
  334.             ipFile.seek(offset); 
  335.             ipFile.readFully(ip); 
  336.             byte temp = ip[0]; 
  337.             ip[0] = ip[3]; 
  338.             ip[3] = temp; 
  339.             temp = ip[1]; 
  340.             ip[1] = ip[2]; 
  341.             ip[2] = temp; 
  342.         } catch (IOException e) { 
  343.             LogFactory.log("",Level.ERROR,e); 
  344.         } 
  345.     } 
  346.      
  347.     /**
  348.      * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
  349.      * 文件中是little-endian形式,将会进行转换
  350.      * @param offset
  351.      * @param ip
  352.      */ 
  353.     private void readIP(int offset, byte[] ip) { 
  354.         mbb.position(offset); 
  355.         mbb.get(ip); 
  356.         byte temp = ip[0]; 
  357.         ip[0] = ip[3]; 
  358.         ip[3] = temp; 
  359.         temp = ip[1]; 
  360.         ip[1] = ip[2]; 
  361.         ip[2] = temp; 
  362.     } 
  363.      
  364.     /**
  365.      * 把类成员ip和beginIp比较,注意这个beginIp是big-endian的
  366.      * @param ip 要查询的IP
  367.      * @param beginIp 和被查询IP相比较的IP
  368.      * @return 相等返回0,ip大于beginIp则返回1,小于返回-1。
  369.      */ 
  370.     private int compareIP(byte[] ip, byte[] beginIp) { 
  371.         for(int i = 0; i < 4; i++) { 
  372.             int r = compareByte(ip[i], beginIp[i]); 
  373.             if(r != 0
  374.                 return r; 
  375.         } 
  376.         return 0
  377.     } 
  378.      
  379.     /**
  380.      * 把两个byte当作无符号数进行比较
  381.      * @param b1
  382.      * @param b2
  383.      * @return 若b1大于b2则返回1,相等返回0,小于返回-1
  384.      */ 
  385.     private int compareByte(byte b1, byte b2) { 
  386.         if((b1 & 0xFF) > (b2 & 0xFF)) // 比较是否大于 
  387.             return 1
  388.         else if((b1 ^ b2) == 0)// 判断是否相等 
  389.             return 0
  390.         else  
  391.             return -1
  392.     } 
  393.      
  394.     /**
  395.      * 这个方法将根据ip的内容,定位到包含这个ip国家地区的记录处,返回一个绝对偏移
  396.      * 方法使用二分法查找。
  397.      * @param ip 要查询的IP
  398.      * @return 如果找到了,返回结束IP的偏移,如果没有找到,返回-1
  399.      */ 
  400.     private long locateIP(byte[] ip) { 
  401.         long m = 0
  402.         int r; 
  403.         // 比较第一个ip项 
  404.         readIP(ipBegin, b4); 
  405.         r = compareIP(ip, b4); 
  406.         if(r == 0) return ipBegin; 
  407.         else if(r < 0) return -1
  408.         // 开始二分搜索 
  409.         for(long i = ipBegin, j = ipEnd; i < j; ) { 
  410.             m = getMiddleOffset(i, j); 
  411.             readIP(m, b4); 
  412.             r = compareIP(ip, b4); 
  413.             // log.debug(Utils.getIpStringFromBytes(b)); 
  414.             if(r > 0
  415.                 i = m; 
  416.             else if(r < 0) { 
  417.                 if(m == j) { 
  418.                     j -= IP_RECORD_LENGTH; 
  419.                     m = j; 
  420.                 } else  
  421.                     j = m; 
  422.             } else 
  423.                 return readLong3(m + 4); 
  424.         } 
  425.         // 如果循环结束了,那么i和j必定是相等的,这个记录为最可能的记录,但是并非 
  426.         //     肯定就是,还要检查一下,如果是,就返回结束地址区的绝对偏移 
  427.         m = readLong3(m + 4); 
  428.         readIP(m, b4); 
  429.         r = compareIP(ip, b4); 
  430.         if(r <= 0) return m; 
  431.         else return -1
  432.     } 
  433.      
  434.     /**
  435.      * 得到begin偏移和end偏移中间位置记录的偏移
  436.      * @param begin
  437.      * @param end
  438.      * @return
  439.      */ 
  440.     private long getMiddleOffset(long begin, long end) { 
  441.         long records = (end - begin) / IP_RECORD_LENGTH; 
  442.         records >>= 1
  443.         if(records == 0) records = 1
  444.         return begin + records * IP_RECORD_LENGTH; 
  445.     } 
  446.      
  447.     /**
  448.      * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构
  449.      * @param offset 国家记录的起始偏移
  450.      * @return IPLocation对象
  451.      */ 
  452.     private IPLocation getIPLocation(long offset) { 
  453.         try
  454.             // 跳过4字节ip 
  455.             ipFile.seek(offset + 4); 
  456.             // 读取第一个字节判断是否标志字节 
  457.             byte b = ipFile.readByte(); 
  458.             if(b == REDIRECT_MODE_1) { 
  459.                 // 读取国家偏移 
  460.                 long countryOffset = readLong3(); 
  461.                 // 跳转至偏移处 
  462.                 ipFile.seek(countryOffset); 
  463.                 // 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向 
  464.                 b = ipFile.readByte(); 
  465.                 if(b == REDIRECT_MODE_2) { 
  466.                     loc.setCountry (  readString(readLong3())); 
  467.                     ipFile.seek(countryOffset + 4); 
  468.                 } else 
  469.                     loc.setCountry ( readString(countryOffset)); 
  470.                 // 读取地区标志 
  471.                 loc.setArea( readArea(ipFile.getFilePointer())); 
  472.             } else if(b == REDIRECT_MODE_2) { 
  473.                 loc.setCountry ( readString(readLong3())); 
  474.                 loc.setArea( readArea(offset + 8)); 
  475.             } else
  476.                 loc.setCountry (  readString(ipFile.getFilePointer() - 1)); 
  477.                 loc.setArea( readArea(ipFile.getFilePointer())); 
  478.             } 
  479.             return loc; 
  480.         } catch (IOException e) { 
  481.             return null
  482.         } 
  483.     }    
  484.      
  485.     /**
  486.      * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构,此方法应用与内存映射文件方式
  487.      * @param offset 国家记录的起始偏移
  488.      * @return IPLocation对象
  489.      */ 
  490.     private IPLocation getIPLocation(int offset) { 
  491.         // 跳过4字节ip 
  492.         mbb.position(offset + 4); 
  493.         // 读取第一个字节判断是否标志字节 
  494.         byte b = mbb.get(); 
  495.         if(b == REDIRECT_MODE_1) { 
  496.             // 读取国家偏移 
  497.             int countryOffset = readInt3(); 
  498.             // 跳转至偏移处 
  499.             mbb.position(countryOffset); 
  500.             // 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向 
  501.             b = mbb.get(); 
  502.             if(b == REDIRECT_MODE_2) { 
  503.                 loc.setCountry (  readString(readInt3())); 
  504.                 mbb.position(countryOffset + 4); 
  505.             } else 
  506.                 loc.setCountry (  readString(countryOffset)); 
  507.             // 读取地区标志 
  508.             loc.setArea(readArea(mbb.position())); 
  509.         } else if(b == REDIRECT_MODE_2) { 
  510.             loc.setCountry ( readString(readInt3())); 
  511.             loc.setArea(readArea(offset + 8)); 
  512.         } else
  513.             loc.setCountry (  readString(mbb.position() - 1)); 
  514.             loc.setArea(readArea(mbb.position())); 
  515.         } 
  516.         return loc; 
  517.     } 
  518.      
  519.     /**
  520.      * 从offset偏移开始解析后面的字节,读出一个地区名
  521.      * @param offset 地区记录的起始偏移
  522.      * @return 地区名字符串
  523.      * @throws IOException
  524.      */ 
  525.     private String readArea(long offset) throws IOException { 
  526.         ipFile.seek(offset); 
  527.         byte b = ipFile.readByte(); 
  528.         if(b == REDIRECT_MODE_1 || b == REDIRECT_MODE_2) { 
  529.             long areaOffset = readLong3(offset + 1); 
  530.             if(areaOffset == 0
  531.                 return Message.unknown_area; 
  532.             else 
  533.                 return readString(areaOffset); 
  534.         } else 
  535.             return readString(offset); 
  536.     } 
  537.      
  538.     /**
  539.      * @param offset 地区记录的起始偏移
  540.      * @return 地区名字符串
  541.      */ 
  542.     private String readArea(int offset) { 
  543.         mbb.position(offset); 
  544.         byte b = mbb.get(); 
  545.         if(b == REDIRECT_MODE_1 || b == REDIRECT_MODE_2) { 
  546.             int areaOffset = readInt3(); 
  547.             if(areaOffset == 0
  548.                 return Message.unknown_area; 
  549.             else 
  550.                 return readString(areaOffset); 
  551.         } else 
  552.             return readString(offset); 
  553.     } 
  554.      
  555.     /**
  556.      * 从offset偏移处读取一个以0结束的字符串
  557.      * @param offset 字符串起始偏移
  558.      * @return 读取的字符串,出错返回空字符串
  559.      */ 
  560.     private String readString(long offset) { 
  561.         try
  562.             ipFile.seek(offset); 
  563.             int i; 
  564.             for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte()); 
  565.             if(i != 0)  
  566.                 return Util.getString(buf, 0, i, "GBK"); 
  567.         } catch (IOException e) {            
  568.             LogFactory.log("",Level.ERROR,e); 
  569.         } 
  570.         return ""
  571.     } 
  572.      
  573.     /**
  574.      * 从内存映射文件的offset位置得到一个0结尾字符串
  575.      * @param offset 字符串起始偏移
  576.      * @return 读取的字符串,出错返回空字符串
  577.      */ 
  578.     private String readString(int offset) { 
  579.         try
  580.             mbb.position(offset); 
  581.             int i; 
  582.             for(i = 0, buf[i] = mbb.get(); buf[i] != 0; buf[++i] = mbb.get()); 
  583.             if(i != 0)  
  584.                 return Util.getString(buf, 0, i, "GBK");        
  585.         } catch (IllegalArgumentException e) { 
  586.             LogFactory.log("",Level.ERROR,e); 
  587.         } 
  588.         return "";    
  589.     } 
package com.showtime.IPparse;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteOrder;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.showtime.util.LogFactory;
import org.apache.log4j.Level;

public class IPSeeker {
	//纯真IP数据库名
	private String IP_FILE="QQWry.Dat";
	//保存的文件夹
	private String INSTALL_DIR="f:/qqwry";
	
	
	// 一些固定常量,比如记录长度等等
	private static final int IP_RECORD_LENGTH = 7;
	private static final byte REDIRECT_MODE_1 = 0x01;
	private static final byte REDIRECT_MODE_2 = 0x02;
	
	// 用来做为cache,查询一个ip时首先查看cache,以减少不必要的重复查找
	private Map<String, IPLocation> ipCache;
	// 随机文件访问类
	private RandomAccessFile ipFile;
	// 内存映射文件
	private MappedByteBuffer mbb;
	// 起始地区的开始和结束的绝对偏移
	private long ipBegin, ipEnd;
	// 为提高效率而采用的临时变量
	private IPLocation loc;
	private byte[] buf;
	private byte[] b4;
	private byte[] b3;
	
	public IPSeeker(String fileName,String dir)  {
		this.INSTALL_DIR=dir;
		this.IP_FILE=fileName;
		ipCache = new HashMap<String, IPLocation>();
		loc = new IPLocation();
		buf = new byte[100];
		b4 = new byte[4];
		b3 = new byte[3];
		try {
			ipFile = new RandomAccessFile(IP_FILE, "r");
		} catch (FileNotFoundException e) {
			// 如果找不到这个文件,再尝试再当前目录下搜索,这次全部改用小写文件名
			//     因为有些系统可能区分大小写导致找不到ip地址信息文件
			String filename = new File(IP_FILE).getName().toLowerCase();
			File[] files = new File(INSTALL_DIR).listFiles();
			for(int i = 0; i < files.length; i++) {
				if(files[i].isFile()) {
					if(files[i].getName().toLowerCase().equals(filename)) {
						try {
							ipFile = new RandomAccessFile(files[i], "r");
						} catch (FileNotFoundException e1) {
							LogFactory.log("IP地址信息文件没有找到,IP显示功能将无法使用",Level.ERROR,e1);
							ipFile = null;
						}
						break;
					}
				}
			}
		} 
		// 如果打开文件成功,读取文件头信息
		if(ipFile != null) {
			try {
				ipBegin = readLong4(0);
				ipEnd = readLong4(4);
				if(ipBegin == -1 || ipEnd == -1) {
					ipFile.close();
					ipFile = null;
				}			
			} catch (IOException e) {
				LogFactory.log("IP地址信息文件格式有错误,IP显示功能将无法使用",Level.ERROR,e);
				ipFile = null;
			}			
		}
	}
	
	
	/**
	 * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
	 * @param s 地点子串
	 * @return 包含IPEntry类型的List
	 */
	public List getIPEntriesDebug(String s) {
	    List<IPEntry> ret = new ArrayList<IPEntry>();
	    long endOffset = ipEnd + 4;
	    for(long offset = ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) {
	        // 读取结束IP偏移
	        long temp = readLong3(offset);
	        // 如果temp不等于-1,读取IP的地点信息
	        if(temp != -1) {
	            IPLocation ipLoc = getIPLocation(temp);
	            // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续
	            if(ipLoc.getCountry().indexOf(s) != -1 || ipLoc.getArea().indexOf(s) != -1) {
	                IPEntry entry = new IPEntry();
	                entry.country = ipLoc.getCountry();
	                entry.area = ipLoc.getArea();
	                // 得到起始IP
	    	        readIP(offset - 4, b4);
	                entry.beginIp = Util.getIpStringFromBytes(b4);
	                // 得到结束IP
	                readIP(temp, b4);
	                entry.endIp = Util.getIpStringFromBytes(b4);
	                // 添加该记录
	                ret.add(entry);
	            }
	        }
	    }
	    return ret;
	}
	
	public IPLocation getIPLocation(String ip){
		IPLocation location=new IPLocation();
		location.setArea(this.getArea(ip));
		location.setCountry(this.getCountry(ip));
		return location;
	}
	
	/**
	 * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
	 * @param s 地点子串
	 * @return 包含IPEntry类型的List
	 */
	public List<IPEntry> getIPEntries(String s) {
	    List<IPEntry> ret = new ArrayList<IPEntry>();
	    try {
	        // 映射IP信息文件到内存中
	        if(mbb == null) {
			    FileChannel fc = ipFile.getChannel();
	            mbb = fc.map(FileChannel.MapMode.READ_ONLY, 0, ipFile.length());
	            mbb.order(ByteOrder.LITTLE_ENDIAN);	            
	        }
            
		    int endOffset = (int)ipEnd;
            for(int offset = (int)ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) {
                int temp = readInt3(offset);
                if(temp != -1) {
    	            IPLocation ipLoc = getIPLocation(temp);
    	            // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续
    	            if(ipLoc.getCountry().indexOf(s) != -1 || ipLoc.getArea().indexOf(s) != -1) {
    	                IPEntry entry = new IPEntry();
    	                entry.country = ipLoc.getCountry();
    	                entry.area = ipLoc.getArea();
    	                // 得到起始IP
    	    	        readIP(offset - 4, b4);
    	                entry.beginIp = Util.getIpStringFromBytes(b4);
    	                // 得到结束IP
    	                readIP(temp, b4);
    	                entry.endIp = Util.getIpStringFromBytes(b4);
    	                // 添加该记录
    	                ret.add(entry);
    	            }
                }
            }           
        } catch (IOException e) {
            LogFactory.log("",Level.ERROR,e);
        }
        return ret;
	}

	/**
	 * 从内存映射文件的offset位置开始的3个字节读取一个int
	 * @param offset
	 * @return
	 */
	private int readInt3(int offset) {
	    mbb.position(offset);
	    return mbb.getInt() & 0x00FFFFFF;
	}

	/**
	 * 从内存映射文件的当前位置开始的3个字节读取一个int
	 * @return
	 */
	private int readInt3() {
	    return mbb.getInt() & 0x00FFFFFF;
	}
	
	/**
	 * 根据IP得到国家名
	 * @param ip ip的字节数组形式
	 * @return 国家名字符串
	 */
	public String getCountry(byte[] ip) {
		// 检查ip地址文件是否正常
		if(ipFile == null) 
			return Message.bad_ip_file;
		// 保存ip,转换ip字节数组为字符串形式
		String ipStr = Util.getIpStringFromBytes(ip);
		// 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件
		if(ipCache.containsKey(ipStr)) {
			IPLocation ipLoc = ipCache.get(ipStr);
			return ipLoc.getCountry();
		} else {
			IPLocation ipLoc = getIPLocation(ip);
			ipCache.put(ipStr, ipLoc.getCopy());
			return ipLoc.getCountry();
		}
	}
	
	/**
	 * 根据IP得到国家名
	 * @param ip IP的字符串形式
	 * @return 国家名字符串
	 */
	public String getCountry(String ip) {
	    return getCountry(Util.getIpByteArrayFromString(ip));
	}
	
	/**
	 * 根据IP得到地区名
	 * @param ip ip的字节数组形式
	 * @return 地区名字符串
	 */
	public String getArea(byte[] ip) {
		// 检查ip地址文件是否正常
		if(ipFile == null) 
			return Message.bad_ip_file;
		// 保存ip,转换ip字节数组为字符串形式
		String ipStr = Util.getIpStringFromBytes(ip);
		// 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件
		if(ipCache.containsKey(ipStr)) {
			IPLocation ipLoc = ipCache.get(ipStr);
			return ipLoc.getArea();
		} else {
			IPLocation ipLoc = getIPLocation(ip);
			ipCache.put(ipStr, ipLoc.getCopy());
			return ipLoc.getArea();
		}
	}
	
	/**
	 * 根据IP得到地区名
	 * @param ip IP的字符串形式
	 * @return 地区名字符串
	 */
	public String getArea(String ip) {
	    return getArea(Util.getIpByteArrayFromString(ip));
	}
	
	/**
	 * 根据ip搜索ip信息文件,得到IPLocation结构,所搜索的ip参数从类成员ip中得到
	 * @param ip 要查询的IP
	 * @return IPLocation结构
	 */
	private IPLocation getIPLocation(byte[] ip) {
		IPLocation info = null;
		long offset = locateIP(ip);
		if(offset != -1)
			info = getIPLocation(offset);
		if(info == null) {
			info = new IPLocation();
			info.setCountry (  Message.unknown_country);
			info.setArea(Message.unknown_area);
		}
		return info;
	}	

	/**
	 * 从offset位置读取4个字节为一个long,因为java为big-endian格式,所以没办法
	 * 用了这么一个函数来做转换
	 * @param offset
	 * @return 读取的long值,返回-1表示读取文件失败
	 */
	private long readLong4(long offset) {
		long ret = 0;
		try {
			ipFile.seek(offset);
			ret |= (ipFile.readByte() & 0xFF);
			ret |= ((ipFile.readByte() << 8) & 0xFF00);
			ret |= ((ipFile.readByte() << 16) & 0xFF0000);
			ret |= ((ipFile.readByte() << 24) & 0xFF000000);
			return ret;
		} catch (IOException e) {
			return -1;
		}
	}

	/**
	 * 从offset位置读取3个字节为一个long,因为java为big-endian格式,所以没办法
	 * 用了这么一个函数来做转换
	 * @param offset 整数的起始偏移
	 * @return 读取的long值,返回-1表示读取文件失败
	 */
	private long readLong3(long offset) {
		long ret = 0;
		try {
			ipFile.seek(offset);
			ipFile.readFully(b3);
			ret |= (b3[0] & 0xFF);
			ret |= ((b3[1] << 8) & 0xFF00);
			ret |= ((b3[2] << 16) & 0xFF0000);
			return ret;
		} catch (IOException e) {
			return -1;
		}
	}	
	
	/**
	 * 从当前位置读取3个字节转换成long
	 * @return 读取的long值,返回-1表示读取文件失败
	 */
	private long readLong3() {
		long ret = 0;
		try {
			ipFile.readFully(b3);
			ret |= (b3[0] & 0xFF);
			ret |= ((b3[1] << 8) & 0xFF00);
			ret |= ((b3[2] << 16) & 0xFF0000);
			return ret;
		} catch (IOException e) {
			return -1;
		}
	}
  
	/**
	 * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
	 * 文件中是little-endian形式,将会进行转换
	 * @param offset
	 * @param ip
	 */
	private void readIP(long offset, byte[] ip) {
		try {
			ipFile.seek(offset);
			ipFile.readFully(ip);
			byte temp = ip[0];
			ip[0] = ip[3];
			ip[3] = temp;
			temp = ip[1];
			ip[1] = ip[2];
			ip[2] = temp;
		} catch (IOException e) {
		    LogFactory.log("",Level.ERROR,e);
		}
	}
	
	/**
	 * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
	 * 文件中是little-endian形式,将会进行转换
	 * @param offset
	 * @param ip
	 */
	private void readIP(int offset, byte[] ip) {
	    mbb.position(offset);
	    mbb.get(ip);
		byte temp = ip[0];
		ip[0] = ip[3];
		ip[3] = temp;
		temp = ip[1];
		ip[1] = ip[2];
		ip[2] = temp;
	}
	
	/**
	 * 把类成员ip和beginIp比较,注意这个beginIp是big-endian的
	 * @param ip 要查询的IP
	 * @param beginIp 和被查询IP相比较的IP
	 * @return 相等返回0,ip大于beginIp则返回1,小于返回-1。
	 */
	private int compareIP(byte[] ip, byte[] beginIp) {
		for(int i = 0; i < 4; i++) {
			int r = compareByte(ip[i], beginIp[i]);
			if(r != 0)
				return r;
		}
		return 0;
	}
	
	/**
	 * 把两个byte当作无符号数进行比较
	 * @param b1
	 * @param b2
	 * @return 若b1大于b2则返回1,相等返回0,小于返回-1
	 */
	private int compareByte(byte b1, byte b2) {
		if((b1 & 0xFF) > (b2 & 0xFF)) // 比较是否大于
			return 1;
		else if((b1 ^ b2) == 0)// 判断是否相等
			return 0;
		else 
			return -1;
	}
	
	/**
	 * 这个方法将根据ip的内容,定位到包含这个ip国家地区的记录处,返回一个绝对偏移
	 * 方法使用二分法查找。
	 * @param ip 要查询的IP
	 * @return 如果找到了,返回结束IP的偏移,如果没有找到,返回-1
	 */
	private long locateIP(byte[] ip) {
		long m = 0;
		int r;
		// 比较第一个ip项
		readIP(ipBegin, b4);
		r = compareIP(ip, b4);
		if(r == 0) return ipBegin;
		else if(r < 0) return -1;
		// 开始二分搜索
		for(long i = ipBegin, j = ipEnd; i < j; ) {
			m = getMiddleOffset(i, j);
			readIP(m, b4);
			r = compareIP(ip, b4);
			// log.debug(Utils.getIpStringFromBytes(b));
			if(r > 0)
				i = m;
			else if(r < 0) {
				if(m == j) {
					j -= IP_RECORD_LENGTH;
					m = j;
				} else 
					j = m;
			} else
				return readLong3(m + 4);
		}
		// 如果循环结束了,那么i和j必定是相等的,这个记录为最可能的记录,但是并非
		//     肯定就是,还要检查一下,如果是,就返回结束地址区的绝对偏移
		m = readLong3(m + 4);
		readIP(m, b4);
		r = compareIP(ip, b4);
		if(r <= 0) return m;
		else return -1;
	}
	
	/**
	 * 得到begin偏移和end偏移中间位置记录的偏移
	 * @param begin
	 * @param end
	 * @return
	 */
	private long getMiddleOffset(long begin, long end) {
		long records = (end - begin) / IP_RECORD_LENGTH;
		records >>= 1;
		if(records == 0) records = 1;
		return begin + records * IP_RECORD_LENGTH;
	}
	
	/**
	 * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构
	 * @param offset 国家记录的起始偏移
	 * @return IPLocation对象
	 */
	private IPLocation getIPLocation(long offset) {
		try {
			// 跳过4字节ip
			ipFile.seek(offset + 4);
			// 读取第一个字节判断是否标志字节
			byte b = ipFile.readByte();
			if(b == REDIRECT_MODE_1) {
				// 读取国家偏移
				long countryOffset = readLong3();
				// 跳转至偏移处
				ipFile.seek(countryOffset);
				// 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向
				b = ipFile.readByte();
				if(b == REDIRECT_MODE_2) {
					loc.setCountry (  readString(readLong3()));
					ipFile.seek(countryOffset + 4);
				} else
					loc.setCountry ( readString(countryOffset));
				// 读取地区标志
				loc.setArea( readArea(ipFile.getFilePointer()));
			} else if(b == REDIRECT_MODE_2) {
				loc.setCountry ( readString(readLong3()));
				loc.setArea( readArea(offset + 8));
			} else {
				loc.setCountry (  readString(ipFile.getFilePointer() - 1));
				loc.setArea( readArea(ipFile.getFilePointer()));
			}
			return loc;
		} catch (IOException e) {
			return null;
		}
	}	
	
	/**
	 * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构,此方法应用与内存映射文件方式
	 * @param offset 国家记录的起始偏移
	 * @return IPLocation对象
	 */
	private IPLocation getIPLocation(int offset) {
		// 跳过4字节ip
	    mbb.position(offset + 4);
		// 读取第一个字节判断是否标志字节
		byte b = mbb.get();
		if(b == REDIRECT_MODE_1) {
			// 读取国家偏移
			int countryOffset = readInt3();
			// 跳转至偏移处
			mbb.position(countryOffset);
			// 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向
			b = mbb.get();
			if(b == REDIRECT_MODE_2) {
				loc.setCountry (  readString(readInt3()));
				mbb.position(countryOffset + 4);
			} else
				loc.setCountry (  readString(countryOffset));
			// 读取地区标志
			loc.setArea(readArea(mbb.position()));
		} else if(b == REDIRECT_MODE_2) {
			loc.setCountry ( readString(readInt3()));
			loc.setArea(readArea(offset + 8));
		} else {
			loc.setCountry (  readString(mbb.position() - 1));
			loc.setArea(readArea(mbb.position()));
		}
		return loc;
	}
	
	/**
	 * 从offset偏移开始解析后面的字节,读出一个地区名
	 * @param offset 地区记录的起始偏移
	 * @return 地区名字符串
	 * @throws IOException
	 */
	private String readArea(long offset) throws IOException {
		ipFile.seek(offset);
		byte b = ipFile.readByte();
		if(b == REDIRECT_MODE_1 || b == REDIRECT_MODE_2) {
			long areaOffset = readLong3(offset + 1);
			if(areaOffset == 0)
				return Message.unknown_area;
			else
				return readString(areaOffset);
		} else
			return readString(offset);
	}
	
	/**
	 * @param offset 地区记录的起始偏移
	 * @return 地区名字符串
	 */
	private String readArea(int offset) {
		mbb.position(offset);
		byte b = mbb.get();
		if(b == REDIRECT_MODE_1 || b == REDIRECT_MODE_2) {
			int areaOffset = readInt3();
			if(areaOffset == 0)
				return Message.unknown_area;
			else
				return readString(areaOffset);
		} else
			return readString(offset);
	}
	
	/**
	 * 从offset偏移处读取一个以0结束的字符串
	 * @param offset 字符串起始偏移
	 * @return 读取的字符串,出错返回空字符串
	 */
	private String readString(long offset) {
		try {
			ipFile.seek(offset);
			int i;
			for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte());
			if(i != 0) 
			    return Util.getString(buf, 0, i, "GBK");
		} catch (IOException e) {			
		    LogFactory.log("",Level.ERROR,e);
		}
		return "";
	}
	
	/**
	 * 从内存映射文件的offset位置得到一个0结尾字符串
	 * @param offset 字符串起始偏移
	 * @return 读取的字符串,出错返回空字符串
	 */
	private String readString(int offset) {
	    try {
			mbb.position(offset);
			int i;
			for(i = 0, buf[i] = mbb.get(); buf[i] != 0; buf[++i] = mbb.get());
			if(i != 0) 
			    return Util.getString(buf, 0, i, "GBK");       
	    } catch (IllegalArgumentException e) {
	        LogFactory.log("",Level.ERROR,e);
	    }
	    return "";	 
	}
}



在实际项目用我使用spring注入IP地址库文件的名字和所在目录,并能保证IPSeeker的单一实例。


下面是个工具类,把string和btye数组之间互相转换的类。
Java代码 复制代码 收藏代码
  1. package com.showtime.IPparse; 
  2.  
  3.  
  4. import java.io.UnsupportedEncodingException; 
  5. import java.util.StringTokenizer; 
  6.  
  7. import org.apache.log4j.Level; 
  8.  
  9. import  com.showtime.util.LogFactory; 
  10.  
  11.  
  12.  
  13. /**
  14. * 工具类,提供一些方便的方法
  15. */ 
  16. public class Util { 
  17.      
  18.     private static StringBuilder sb = new StringBuilder(); 
  19.     /**
  20.      * 从ip的字符串形式得到字节数组形式
  21.      * @param ip 字符串形式的ip
  22.      * @return 字节数组形式的ip
  23.      */ 
  24.     public static byte[] getIpByteArrayFromString(String ip) { 
  25.         byte[] ret = new byte[4]; 
  26.         StringTokenizer st = new StringTokenizer(ip, "."); 
  27.         try
  28.             ret[0] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF); 
  29.             ret[1] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF); 
  30.             ret[2] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF); 
  31.             ret[3] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF); 
  32.         } catch (Exception e) { 
  33.           LogFactory.log("从ip的字符串形式得到字节数组形式报错", Level.ERROR, e); 
  34.         } 
  35.         return ret; 
  36.     } 
  37.     /**
  38.      * @param ip ip的字节数组形式
  39.      * @return 字符串形式的ip
  40.      */ 
  41.     public static String getIpStringFromBytes(byte[] ip) { 
  42.         sb.delete(0, sb.length()); 
  43.         sb.append(ip[0] & 0xFF); 
  44.         sb.append('.');      
  45.         sb.append(ip[1] & 0xFF); 
  46.         sb.append('.');      
  47.         sb.append(ip[2] & 0xFF); 
  48.         sb.append('.');      
  49.         sb.append(ip[3] & 0xFF); 
  50.         return sb.toString(); 
  51.     } 
  52.      
  53.     /**
  54.      * 根据某种编码方式将字节数组转换成字符串
  55.      * @param b 字节数组
  56.      * @param offset 要转换的起始位置
  57.      * @param len 要转换的长度
  58.      * @param encoding 编码方式
  59.      * @return 如果encoding不支持,返回一个缺省编码的字符串
  60.      */ 
  61.     public static String getString(byte[] b, int offset, int len, String encoding) { 
  62.         try
  63.             return new String(b, offset, len, encoding); 
  64.         } catch (UnsupportedEncodingException e) { 
  65.             return new String(b, offset, len); 
  66.         } 
  67.     } 
package com.showtime.IPparse;


import java.io.UnsupportedEncodingException;
import java.util.StringTokenizer;

import org.apache.log4j.Level;

import  com.showtime.util.LogFactory;



/**
 * 工具类,提供一些方便的方法
 */
public class Util {
	
	private static StringBuilder sb = new StringBuilder();
	/**
     * 从ip的字符串形式得到字节数组形式
     * @param ip 字符串形式的ip
     * @return 字节数组形式的ip
     */
    public static byte[] getIpByteArrayFromString(String ip) {
        byte[] ret = new byte[4];
        StringTokenizer st = new StringTokenizer(ip, ".");
        try {
            ret[0] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
            ret[1] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
            ret[2] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
            ret[3] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
        } catch (Exception e) {
          LogFactory.log("从ip的字符串形式得到字节数组形式报错", Level.ERROR, e);
        }
        return ret;
    }
    /**
     * @param ip ip的字节数组形式
     * @return 字符串形式的ip
     */
    public static String getIpStringFromBytes(byte[] ip) {
	    sb.delete(0, sb.length());
    	sb.append(ip[0] & 0xFF);
    	sb.append('.');   	
    	sb.append(ip[1] & 0xFF);
    	sb.append('.');   	
    	sb.append(ip[2] & 0xFF);
    	sb.append('.');   	
    	sb.append(ip[3] & 0xFF);
    	return sb.toString();
    }
    
    /**
     * 根据某种编码方式将字节数组转换成字符串
     * @param b 字节数组
     * @param offset 要转换的起始位置
     * @param len 要转换的长度
     * @param encoding 编码方式
     * @return 如果encoding不支持,返回一个缺省编码的字符串
     */
    public static String getString(byte[] b, int offset, int len, String encoding) {
        try {
            return new String(b, offset, len, encoding);
        } catch (UnsupportedEncodingException e) {
            return new String(b, offset, len);
        }
    }
}




下面是个常量值的类,用接口形式来定义省事不少。
Java代码 复制代码 收藏代码
  1. package com.showtime.IPparse; 
  2.  
  3. public interface Message { 
  4.     String bad_ip_file="IP地址库文件错误"
  5.     String unknown_country="未知国家"
  6.     String unknown_area="未知地区"
package com.showtime.IPparse;

public interface Message {
	String bad_ip_file="IP地址库文件错误";
	String unknown_country="未知国家";
	String unknown_area="未知地区";
}




一个封装国家和地区的实体类
Java代码 复制代码 收藏代码
  1. package com.showtime.IPparse; 
  2.  
  3.  
  4. /**
  5. *
  6. * @category 用来封装ip相关信息,目前只有两个字段,ip所在的国家和地区
  7. */ 
  8.  
  9. public class IPLocation { 
  10.     private String country; 
  11.     private String area; 
  12.      
  13.     public IPLocation() { 
  14.         country = area = ""
  15.     } 
  16.      
  17.     public IPLocation getCopy() { 
  18.         IPLocation ret = new IPLocation(); 
  19.         ret.country = country; 
  20.         ret.area = area; 
  21.         return ret; 
  22.     } 
  23.  
  24.     public String getCountry() { 
  25.         return country; 
  26.     } 
  27.  
  28.     public void setCountry(String country) { 
  29.         this.country = country; 
  30.     } 
  31.  
  32.     public String getArea() { 
  33.         return area; 
  34.     } 
  35.  
  36.     public void setArea(String area) { 
  37.                 //如果为局域网,纯真IP地址库的地区会显示CZ88.NET,这里把它去掉 
  38.         if(area.trim().equals("CZ88.NET")){ 
  39.             this.area="本机或本网络"
  40.         }else
  41.             this.area = area; 
  42.         } 
  43.     } 
package com.showtime.IPparse;


/** 
 * 
 * @category 用来封装ip相关信息,目前只有两个字段,ip所在的国家和地区
 */

public class IPLocation {
	private String country;
	private String area;
	
	public IPLocation() {
	    country = area = "";
	}
	
	public IPLocation getCopy() {
	    IPLocation ret = new IPLocation();
	    ret.country = country;
	    ret.area = area;
	    return ret;
	}

	public String getCountry() {
		return country;
	}

	public void setCountry(String country) {
		this.country = country;
	}

	public String getArea() {
		return area;
	}

	public void setArea(String area) {
                //如果为局域网,纯真IP地址库的地区会显示CZ88.NET,这里把它去掉
		if(area.trim().equals("CZ88.NET")){
			this.area="本机或本网络";
		}else{
			this.area = area;
		}
	}
}




一下是一个范围记录的类
Java代码 复制代码 收藏代码
  1. package com.showtime.IPparse; 
  2. /**
  3. * <pre>
  4. * 一条IP范围记录,不仅包括国家和区域,也包括起始IP和结束IP
  5. * </pre>
  6. */ 
  7. public class IPEntry { 
  8.     public String beginIp; 
  9.     public String endIp; 
  10.     public String country; 
  11.     public String area; 
  12.      
  13.     /**
  14.      * 构造函数
  15.      */ 
  16.     public IPEntry() { 
  17.         beginIp = endIp = country = area = ""
  18.     } 
package com.showtime.IPparse;
/**
 * <pre>
 * 一条IP范围记录,不仅包括国家和区域,也包括起始IP和结束IP
 * </pre>
 */
public class IPEntry {
    public String beginIp;
    public String endIp;
    public String country;
    public String area;
    
    /**
     * 构造函数
     */
    public IPEntry() {
        beginIp = endIp = country = area = "";
    }
}


日志记录类
Java代码 复制代码 收藏代码
  1. package com.showtime.util; 
  2.  
  3. import org.apache.log4j.Level; 
  4. import org.apache.log4j.Logger; 
  5.  
  6. /**
  7. *
  8. *
  9. * 日志工厂
  10. */ 
  11. public class LogFactory { 
  12.     private static final Logger logger; 
  13.     static
  14.         logger = Logger.getLogger("stdout"); 
  15.         logger.setLevel(Level.DEBUG); 
  16.     } 
  17.  
  18.     public static void log(String info, Level level, Throwable ex) { 
  19.         logger.log(level, info, ex); 
  20.     } 
  21.      
  22.     public static Level  getLogLevel(){ 
  23.         return logger.getLevel(); 
  24.     } 
  25.  
package com.showtime.util;

import org.apache.log4j.Level;
import org.apache.log4j.Logger;

/**
 * 
 * 
 * 日志工厂
 */
public class LogFactory {
	private static final Logger logger;
	static {
		logger = Logger.getLogger("stdout");
		logger.setLevel(Level.DEBUG);
	}

	public static void log(String info, Level level, Throwable ex) {
		logger.log(level, info, ex);
	}
	
	public static Level  getLogLevel(){
		return logger.getLevel();
	}

}


下面是测试类
Java代码 复制代码 收藏代码
  1. package com.showtime.IPparse; 
  2.  
  3. import junit.framework.TestCase; 
  4.  
  5. public class IPtest extends TestCase { 
  6.      
  7.     public void testIp(){ 
  8.                 //指定纯真数据库的文件名,所在文件夹 
  9.         IPSeeker ip=new IPSeeker("QQWry.Dat","f:/qqwry"); 
  10.          //测试IP 58.20.43.13 
  11. System.out.println(ip.getIPLocation("58.20.43.13").getCountry()+":"+ip.getIPLocation("58.20.43.13").getArea()); 
  12.     } 
package com.showtime.IPparse;

import junit.framework.TestCase;

public class IPtest extends TestCase {
	
	public void testIp(){
                //指定纯真数据库的文件名,所在文件夹
		IPSeeker ip=new IPSeeker("QQWry.Dat","f:/qqwry");
		 //测试IP 58.20.43.13
System.out.println(ip.getIPLocation("58.20.43.13").getCountry()+":"+ip.getIPLocation("58.20.43.13").getArea());
	}
}


当输出:湖南省长沙市:网通


大功告成。
传了半天,项目只有18K,怎么传不上来呢,先发了帖子再说吧。
分享到:     
评论
14 楼    tianhandigeng    2011-12-16      引用
不能获取具体的城市吗,输出getArea的输出时地区时有点问题,不能想获取省就获取省,想获取市就是市吗?我现在是成都市IP,用getArea获取的就是四川省成都市,我只想获取市,该怎么做?我qq是874904507,知道的指导一下吧
13 楼    gundumw100    2010-01-22      引用
看下源码(声明一下:也不是我的)
Java代码 复制代码 收藏代码
  1. package com.worthtech.app.util.ip; 
  2.  
  3. import java.io.FileNotFoundException; 
  4. import java.io.IOException; 
  5. import java.io.RandomAccessFile; 
  6. import java.nio.ByteOrder; 
  7. import java.nio.MappedByteBuffer; 
  8. import java.nio.channels.FileChannel; 
  9. import java.util.ArrayList; 
  10. import java.util.Hashtable; 
  11. import java.util.List; 
  12.  
  13. /**
  14. * <pre>
  15. * 用来读取QQwry.dat文件,以根据ip获得好友位置,QQwry.dat的格式是
  16. * 一. 文件头,共8字节
  17. *    1. 第一个起始IP的绝对偏移, 4字节
  18. *     2. 最后一个起始IP的绝对偏移, 4字节
  19. * 二. &quot;结束地址/国家/区域&quot;记录区
  20. *     四字节ip地址后跟的每一条记录分成两个部分
  21. *     1. 国家记录
  22. *     2. 地区记录
  23. *     但是地区记录是不一定有的。而且国家记录和地区记录都有两种形式
  24. *     1. 以0结束的字符串
  25. *     2. 4个字节,一个字节可能为0x1或0x2
  26. *   a. 为0x1时,表示在绝对偏移后还跟着一个区域的记录,注意是绝对偏移之后,而不是这四个字节之后
  27. *        b. 为0x2时,表示在绝对偏移后没有区域记录
  28. *        不管为0x1还是0x2,后三个字节都是实际国家名的文件内绝对偏移
  29. *   如果是地区记录,0x1和0x2的含义不明,但是如果出现这两个字节,也肯定是跟着3个字节偏移,如果不是
  30. *        则为0结尾字符串
  31. * 三. &quot;起始地址/结束地址偏移&quot;记录区
  32. *     1. 每条记录7字节,按照起始地址从小到大排列
  33. *        a. 起始IP地址,4字节
  34. *        b. 结束ip地址的绝对偏移,3字节
  35. *
  36. * 注意,这个文件里的ip地址和所有的偏移量均采用little-endian格式,而java是采用
  37. * big-endian格式的,要注意转换
  38. * </pre>
  39. *
  40. * @author 马若劼
  41. */ 
  42. public class IPSeeker { 
  43.     /**
  44.      * <pre>
  45.      * 用来封装ip相关信息,目前只有两个字段,ip所在的国家和地区
  46.      * </pre>
  47.      *
  48.      * @author 马若劼
  49.      */ 
  50.     private class IPLocation { 
  51.         public String country; 
  52.         public String area; 
  53.  
  54.         public IPLocation() { 
  55.             country = area = ""
  56.         } 
  57.  
  58.         public IPLocation getCopy() { 
  59.             IPLocation ret = new IPLocation(); 
  60.             ret.country = country; 
  61.             ret.area = area; 
  62.             return ret; 
  63.         } 
  64.     } 
  65.  
  66.     private static final String IP_FILE = IPSeeker.class.getResource( 
  67.             "QQWry.dat").toString().substring(5); 
  68.  
  69.     // 一些固定常量,比如记录长度等等 
  70.     private static final int IP_RECORD_LENGTH = 7
  71.     private static final byte AREA_FOLLOWED = 0x01
  72.     private static final byte NO_AREA = 0x2
  73.  
  74.     // 用来做为cache,查询一个ip时首先查看cache,以减少不必要的重复查找 
  75.     private final Hashtable ipCache; 
  76.     // 随机文件访问类 
  77.     private RandomAccessFile ipFile; 
  78.     // 内存映射文件 
  79.     private MappedByteBuffer mbb; 
  80.     // 单一模式实例 
  81.     private static IPSeeker instance = new IPSeeker(); 
  82.     // 起始地区的开始和结束的绝对偏移 
  83.     private long ipBegin, ipEnd; 
  84.     // 为提高效率而采用的临时变量 
  85.     private final IPLocation loc; 
  86. //  private final byte[] buf;//不需要了 
  87.     private final byte[] b4; 
  88.     private final byte[] b3; 
  89.  
  90.     /**
  91.      * 私有构造函数
  92.      */ 
  93.     private IPSeeker() { 
  94.         ipCache = new Hashtable(); 
  95.         loc = new IPLocation(); 
  96. //      buf = new byte[100];//不需要了,这里初始化不好! 
  97.         b4 = new byte[4]; 
  98.         b3 = new byte[3]; 
  99.         try
  100.             ipFile = new RandomAccessFile(IP_FILE, "r"); 
  101.         } catch (FileNotFoundException e) { 
  102.             System.out.println(IPSeeker.class.getResource("QQWry.dat").toString()); 
  103.             System.out.println(IP_FILE); 
  104.             System.out.println("IP地址信息文件没有找到,IP显示功能将无法使用"); 
  105.             ipFile = null
  106.  
  107.         } 
  108.         // 如果打开文件成功,读取文件头信息 
  109.         if (ipFile != null) { 
  110.             try
  111.                 ipBegin = readLong4(0); 
  112.                 ipEnd = readLong4(4); 
  113.                 if (ipBegin == -1 || ipEnd == -1) { 
  114.                     ipFile.close(); 
  115.                     ipFile = null
  116.                 } 
  117.             } catch (IOException e) { 
  118.                 System.out.println("IP地址信息文件格式有错误,IP显示功能将无法使用"); 
  119.                 ipFile = null
  120.             } 
  121.         } 
  122.     } 
  123.  
  124.     /**
  125.      * @return 单一实例
  126.      */ 
  127.     public static IPSeeker getInstance() { 
  128.         return instance; 
  129.     } 
  130.  
  131.     /**
  132.      * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
  133.      *
  134.      * @param s
  135.      *            地点子串
  136.      * @return 包含IPEntry类型的List
  137.      */ 
  138.     public List getIPEntriesDebug(String s) { 
  139.         List ret = new ArrayList(); 
  140.         long endOffset = ipEnd + 4
  141.         for (long offset = ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) { 
  142.             // 读取结束IP偏移 
  143.             long temp = readLong3(offset); 
  144.             // 如果temp不等于-1,读取IP的地点信息 
  145.             if (temp != -1) { 
  146.                 IPLocation loc = getIPLocation(temp); 
  147.                 // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续 
  148.                 if (loc.country.indexOf(s) != -1 || loc.area.indexOf(s) != -1) { 
  149.                     IPEntry entry = new IPEntry(); 
  150.                     entry.country = loc.country; 
  151.                     entry.area = loc.area; 
  152.                     // 得到起始IP 
  153.                     readIP(offset - 4, b4); 
  154.                     entry.beginIp = Utils.getIpStringFromBytes(b4); 
  155.                     // 得到结束IP 
  156.                     readIP(temp, b4); 
  157.                     entry.endIp = Utils.getIpStringFromBytes(b4); 
  158.                     // 添加该记录 
  159.                     ret.add(entry); 
  160.                 } 
  161.             } 
  162.         } 
  163.         return ret; 
  164.     } 
  165.  
  166.     /**
  167.      * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
  168.      *
  169.      * @param s
  170.      *            地点子串
  171.      * @return 包含IPEntry类型的List
  172.      */ 
  173.     public List getIPEntries(String s) { 
  174.         List ret = new ArrayList(); 
  175.         try
  176.             // 映射IP信息文件到内存中 
  177.             if (mbb == null) { 
  178.                 FileChannel fc = ipFile.getChannel(); 
  179.                 mbb = fc.map(FileChannel.MapMode.READ_ONLY, 0, ipFile.length()); 
  180.                 mbb.order(ByteOrder.LITTLE_ENDIAN); 
  181.             } 
  182.  
  183.             int endOffset = (int) ipEnd; 
  184.             for (int offset = (int) ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) { 
  185.                 int temp = readInt3(offset); 
  186.                 if (temp != -1) { 
  187.                     IPLocation loc = getIPLocation(temp); 
  188.                     // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续 
  189.                     if (loc.country.indexOf(s) != -1 
  190.                             || loc.area.indexOf(s) != -1) { 
  191.                         IPEntry entry = new IPEntry(); 
  192.                         entry.country = loc.country; 
  193.                         entry.area = loc.area; 
  194.                         // 得到起始IP 
  195.                         readIP(offset - 4, b4); 
  196.                         entry.beginIp = Utils.getIpStringFromBytes(b4); 
  197.                         // 得到结束IP 
  198.                         readIP(temp, b4); 
  199.                         entry.endIp = Utils.getIpStringFromBytes(b4); 
  200.                         // 添加该记录 
  201.                         ret.add(entry); 
  202.                     } 
  203.                 } 
  204.             } 
  205.         } catch (IOException e) { 
  206.             System.out.println(e.getMessage()); 
  207.         } 
  208.         return ret; 
  209.     } 
  210.  
  211.     /**
  212.      * 从内存映射文件的offset位置开始的3个字节读取一个int
  213.      *
  214.      * @param offset
  215.      * @return
  216.      */ 
  217.     private int readInt3(int offset) { 
  218.         mbb.position(offset); 
  219.         return mbb.getInt() & 0x00FFFFFF
  220.     } 
  221.  
  222.     /**
  223.      * 从内存映射文件的当前位置开始的3个字节读取一个int
  224.      *
  225.      * @return
  226.      */ 
  227.     private int readInt3() { 
  228.         return mbb.getInt() & 0x00FFFFFF
  229.     } 
  230.  
  231.     /**
  232.      * 根据IP得到国家名
  233.      *
  234.      * @param ip
  235.      *            ip的字节数组形式
  236.      * @return 国家名字符串
  237.      */ 
  238.     public String getCountry(byte[] ip) { 
  239.         // 检查ip地址文件是否正常 
  240.         if (ipFile == null
  241.             return "错误的IP数据库文件"
  242.         // 保存ip,转换ip字节数组为字符串形式 
  243.         String ipStr = Utils.getIpStringFromBytes(ip); 
  244.         // 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件 
  245.         if (ipCache.containsKey(ipStr)) { 
  246.             IPLocation loc = (IPLocation) ipCache.get(ipStr); 
  247.             return loc.country; 
  248.         } else
  249.             IPLocation loc = getIPLocation(ip); 
  250.             ipCache.put(ipStr, loc.getCopy()); 
  251.             return loc.country; 
  252.         } 
  253.     } 
  254.  
  255.     /**
  256.      * 根据IP得到国家名
  257.      *
  258.      * @param ip
  259.      *            IP的字符串形式
  260.      * @return 国家名字符串
  261.      */ 
  262.     public String getCountry(String ip) { 
  263.         return getCountry(Utils.getIpByteArrayFromString(ip)); 
  264.     } 
  265.  
  266.     /**
  267.      * 根据IP得到地区名
  268.      *
  269.      * @param ip
  270.      *            ip的字节数组形式
  271.      * @return 地区名字符串
  272.      */ 
  273.     public String getArea(byte[] ip) { 
  274.         // 检查ip地址文件是否正常 
  275.         if (ipFile == null
  276.             return "错误的IP数据库文件"
  277.         // 保存ip,转换ip字节数组为字符串形式 
  278.         String ipStr = Utils.getIpStringFromBytes(ip); 
  279.         // 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件 
  280.         if (ipCache.containsKey(ipStr)) { 
  281.             IPLocation loc = (IPLocation) ipCache.get(ipStr); 
  282.             return loc.area; 
  283.         } else
  284.             IPLocation loc = getIPLocation(ip); 
  285.             ipCache.put(ipStr, loc.getCopy()); 
  286.             return loc.area; 
  287.         } 
  288.     } 
  289.  
  290.     /**
  291.      * 根据IP得到地区名
  292.      *
  293.      * @param ip
  294.      *            IP的字符串形式
  295.      * @return 地区名字符串
  296.      */ 
  297.     public String getArea(String ip) { 
  298.         return getArea(Utils.getIpByteArrayFromString(ip)); 
  299.     } 
  300.  
  301.     /**
  302.      * 根据ip搜索ip信息文件,得到IPLocation结构,所搜索的ip参数从类成员ip中得到
  303.      *
  304.      * @param ip
  305.      *            要查询的IP
  306.      * @return IPLocation结构
  307.      */ 
  308.     private IPLocation getIPLocation(byte[] ip) { 
  309.         IPLocation info = null
  310.         long offset = locateIP(ip); 
  311.         if (offset != -1
  312.             info = getIPLocation(offset); 
  313.         if (info == null) { 
  314.             info = new IPLocation(); 
  315.             info.country = "未知国家"
  316.             info.area = "未知地区"
  317.         } 
  318.         return info; 
  319.     } 
  320.  
  321.     /**
  322.      * 从offset位置读取4个字节为一个long,因为java为big-endian格式,所以没办法 用了这么一个函数来做转换
  323.      *
  324.      * @param offset
  325.      * @return 读取的long值,返回-1表示读取文件失败
  326.      */ 
  327.     private long readLong4(long offset) { 
  328.         long ret = 0
  329.         try
  330.             ipFile.seek(offset); 
  331.             ret |= (ipFile.readByte() & 0xFF); 
  332.             ret |= ((ipFile.readByte() << 8) & 0xFF00); 
  333.             ret |= ((ipFile.readByte() << 16) & 0xFF0000); 
  334.             ret |= ((ipFile.readByte() << 24) & 0xFF000000); 
  335.             return ret; 
  336.         } catch (IOException e) { 
  337.             return -1
  338.         } 
  339.     } 
  340.  
  341.     /**
  342.      * 从offset位置读取3个字节为一个long,因为java为big-endian格式,所以没办法 用了这么一个函数来做转换
  343.      *
  344.      * @param offset
  345.      * @return 读取的long值,返回-1表示读取文件失败
  346.      */ 
  347.     private long readLong3(long offset) { 
  348.         long ret = 0
  349.         try
  350.             ipFile.seek(offset); 
  351.             ipFile.readFully(b3); 
  352.             ret |= (b3[0] & 0xFF); 
  353.             ret |= ((b3[1] << 8) & 0xFF00); 
  354.             ret |= ((b3[2] << 16) & 0xFF0000); 
  355.             return ret; 
  356.         } catch (IOException e) { 
  357.             return -1
  358.         } 
  359.     } 
  360.  
  361.     /**
  362.      * 从当前位置读取3个字节转换成long
  363.      *
  364.      * @return
  365.      */ 
  366.     private long readLong3() { 
  367.         long ret = 0
  368.         try
  369.             ipFile.readFully(b3); 
  370.             ret |= (b3[0] & 0xFF); 
  371.             ret |= ((b3[1] << 8) & 0xFF00); 
  372.             ret |= ((b3[2] << 16) & 0xFF0000); 
  373.             return ret; 
  374.         } catch (IOException e) { 
  375.             return -1
  376.         } 
  377.     } 
  378.  
  379.     /**
  380.      * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
  381.      * 文件中是little-endian形式,将会进行转换
  382.      *
  383.      * @param offset
  384.      * @param ip
  385.      */ 
  386.     private void readIP(long offset, byte[] ip) { 
  387.         try
  388.             ipFile.seek(offset); 
  389.             ipFile.readFully(ip); 
  390.             byte temp = ip[0]; 
  391.             ip[0] = ip[3]; 
  392.             ip[3] = temp; 
  393.             temp = ip[1]; 
  394.             ip[1] = ip[2]; 
  395.             ip[2] = temp; 
  396.         } catch (IOException e) { 
  397.             System.out.println(e.getMessage()); 
  398.         } 
  399.     } 
  400.  
  401.     /**
  402.      * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
  403.      * 文件中是little-endian形式,将会进行转换
  404.      *
  405.      * @param offset
  406.      * @param ip
  407.      */ 
  408.     private void readIP(int offset, byte[] ip) { 
  409.         mbb.position(offset); 
  410.         mbb.get(ip); 
  411.         byte temp = ip[0]; 
  412.         ip[0] = ip[3]; 
  413.         ip[3] = temp; 
  414.         temp = ip[1]; 
  415.         ip[1] = ip[2]; 
  416.         ip[2] = temp; 
  417.     } 
  418.  
  419.     /**
  420.      * 把类成员ip和beginIp比较,注意这个beginIp是big-endian的
  421.      *
  422.      * @param ip
  423.      *            要查询的IP
  424.      * @param beginIp
  425.      *            和被查询IP相比较的IP
  426.      * @return 相等返回0,ip大于beginIp则返回1,小于返回-1。
  427.      */ 
  428.     private int compareIP(byte[] ip, byte[] beginIp) { 
  429.         for (int i = 0; i < 4; i++) { 
  430.             int r = compareByte(ip[i], beginIp[i]); 
  431.             if (r != 0
  432.                 return r; 
  433.         } 
  434.         return 0
  435.     } 
  436.  
  437.     /**
  438.      * 把两个byte当作无符号数进行比较
  439.      *
  440.      * @param b1
  441.      * @param b2
  442.      * @return 若b1大于b2则返回1,相等返回0,小于返回-1
  443.      */ 
  444.     private int compareByte(byte b1, byte b2) { 
  445.         if ((b1 & 0xFF) > (b2 & 0xFF)) // 比较是否大于 
  446.             return 1
  447.         else if ((b1 ^ b2) == 0)// 判断是否相等 
  448.             return 0
  449.         else 
  450.             return -1
  451.     } 
  452.  
  453.     /**
  454.      * 这个方法将根据ip的内容,定位到包含这个ip国家地区的记录处,返回一个绝对偏移 方法使用二分法查找。
  455.      *
  456.      * @param ip
  457.      *            要查询的IP
  458.      * @return 如果找到了,返回结束IP的偏移,如果没有找到,返回-1
  459.      */ 
  460.     private long locateIP(byte[] ip) { 
  461.         long m = 0
  462.         int r; 
  463.         // 比较第一个ip项 
  464.         readIP(ipBegin, b4); 
  465.         r = compareIP(ip, b4); 
  466.         if (r == 0
  467.             return ipBegin; 
  468.         else if (r < 0
  469.             return -1
  470.         // 开始二分搜索 
  471.         for (long i = ipBegin, j = ipEnd; i < j;) { 
  472.             m = getMiddleOffset(i, j); 
  473.             readIP(m, b4); 
  474.             r = compareIP(ip, b4); 
  475.             // log.debug(Utils.getIpStringFromBytes(b)); 
  476.             if (r > 0
  477.                 i = m; 
  478.             else if (r < 0) { 
  479.                 if (m == j) { 
  480.                     j -= IP_RECORD_LENGTH; 
  481.                     m = j; 
  482.                 } else 
  483.                     j = m; 
  484.             } else 
  485.                 return readLong3(m + 4); 
  486.         } 
  487.         // 如果循环结束了,那么i和j必定是相等的,这个记录为最可能的记录,但是并非 
  488.         // 肯定就是,还要检查一下,如果是,就返回结束地址区的绝对偏移 
  489.         m = readLong3(m + 4); 
  490.         readIP(m, b4); 
  491.         r = compareIP(ip, b4); 
  492.         if (r <= 0
  493.             return m; 
  494.         else 
  495.             return -1
  496.     } 
  497.  
  498.     /**
  499.      * 得到begin偏移和end偏移中间位置记录的偏移
  500.      *
  501.      * @param begin
  502.      * @param end
  503.      * @return
  504.      */ 
  505.     private long getMiddleOffset(long begin, long end) { 
  506.         long records = (end - begin) / IP_RECORD_LENGTH; 
  507.         records >>= 1
  508.         if (records == 0
  509.             records = 1
  510.         return begin + records * IP_RECORD_LENGTH; 
  511.     } 
  512.  
  513.     /**
  514.      * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构
  515.      *
  516.      * @param offset
  517.      * @return
  518.      */ 
  519.     private IPLocation getIPLocation(long offset) { 
  520.         try
  521.             // 跳过4字节ip 
  522.             ipFile.seek(offset + 4); 
  523.             // 读取第一个字节判断是否标志字节 
  524.             byte b = ipFile.readByte(); 
  525.             if (b == AREA_FOLLOWED) { 
  526.                 // 读取国家偏移 
  527.                 long countryOffset = readLong3(); 
  528.                 // 跳转至偏移处 
  529.                 ipFile.seek(countryOffset); 
  530.                 // 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向 
  531.                 b = ipFile.readByte(); 
  532.                 if (b == NO_AREA) { 
  533.                     loc.country = readString(readLong3()); 
  534.                     ipFile.seek(countryOffset + 4); 
  535.                 } else 
  536.                     loc.country = readString(countryOffset); 
  537.                 // 读取地区标志 
  538.                 loc.area = readArea(ipFile.getFilePointer()); 
  539.             } else if (b == NO_AREA) { 
  540.                 loc.country = readString(readLong3()); 
  541.                 loc.area = readArea(offset + 8); 
  542.             } else
  543.                 loc.country = readString(ipFile.getFilePointer() - 1); 
  544.                 loc.area = readArea(ipFile.getFilePointer()); 
  545.             } 
  546.             return loc; 
  547.         } catch (IOException e) { 
  548.             return null
  549.         } 
  550.     } 
  551.  
  552.     /**
  553.      * @param offset
  554.      * @return
  555.      */ 
  556.     private IPLocation getIPLocation(int offset) { 
  557.         // 跳过4字节ip 
  558.         mbb.position(offset + 4); 
  559.         // 读取第一个字节判断是否标志字节 
  560.         byte b = mbb.get(); 
  561.         if (b == AREA_FOLLOWED) { 
  562.             // 读取国家偏移 
  563.             int countryOffset = readInt3(); 
  564.             // 跳转至偏移处 
  565.             mbb.position(countryOffset); 
  566.             // 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向 
  567.             b = mbb.get(); 
  568.             if (b == NO_AREA) { 
  569.                 loc.country = readString(readInt3()); 
  570.                 mbb.position(countryOffset + 4); 
  571.             } else 
  572.                 loc.country = readString(countryOffset); 
  573.             // 读取地区标志 
  574.             loc.area = readArea(mbb.position()); 
  575.         } else if (b == NO_AREA) { 
  576.             loc.country = readString(readInt3()); 
  577.             loc.area = readArea(offset + 8); 
  578.         } else
  579.             loc.country = readString(mbb.position() - 1); 
  580.             loc.area = readArea(mbb.position()); 
  581.         } 
  582.         return loc; 
  583.     } 
  584.  
  585.     /**
  586.      * 从offset偏移开始解析后面的字节,读出一个地区名
  587.      *
  588.      * @param offset
  589.      * @return 地区名字符串
  590.      * @throws IOException
  591.      */ 
  592.     private String readArea(long offset) throws IOException { 
  593.         ipFile.seek(offset); 
  594.         byte b = ipFile.readByte(); 
  595.         if (b == 0x01 || b == 0x02) { 
  596.             long areaOffset = readLong3(offset + 1); 
  597.             if (areaOffset == 0
  598.                 return "未知地区"
  599.             else 
  600.                 return readString(areaOffset); 
  601.         } else 
  602.             return readString(offset); 
  603.     } 
  604.  
  605.     /**
  606.      * @param offset
  607.      * @return
  608.      */ 
  609.     private String readArea(int offset) { 
  610.         mbb.position(offset); 
  611.         byte b = mbb.get(); 
  612.         if (b == 0x01 || b == 0x02) { 
  613.             int areaOffset = readInt3(); 
  614.             if (areaOffset == 0
  615.                 return "未知地区"
  616.             else 
  617.                 return readString(areaOffset); 
  618.         } else 
  619.             return readString(offset); 
  620.     } 
  621.  
  622.     /**
  623.      * 从offset偏移处读取一个以0结束的字符串
  624.      *
  625.      * @param offset
  626.      * @return 读取的字符串,出错返回空字符串
  627.      */ 
  628.     private String readString(long offset) { 
  629.         try
  630.             ipFile.seek(offset); 
  631.             //int i; 
  632.             //for (i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte()); 
  633.             //上面的写法读取数据如果超过100个字节就会报数组越界异常 
  634.             int i = 0
  635.             byte[] buf = new byte[256]; 
  636.             while ((buf[i] = ipFile.readByte()) != 0) { 
  637.                 ++ i; 
  638.                 if (i >= buf.length) { 
  639.                     byte[] tmp = new byte[i + 100]; 
  640.                     System.arraycopy(buf, 0, tmp, 0, i); 
  641.                     buf = tmp; 
  642.                 } 
  643.             } 
  644.             / 
  645.             if (i != 0
  646.                 return Utils.getString(buf, 0, i, "GBK"); 
  647.         } catch (IOException e) { 
  648.             System.out.println(e.getMessage()); 
  649.         } 
  650.         return ""
  651.     } 
  652.  
  653.     /**
  654.      * 从内存映射文件的offset位置得到一个0结尾字符串
  655.      *
  656.      * @param offset
  657.      * @return
  658.      */ 
  659.     private String readString(int offset) { 
  660.         try
  661.             mbb.position(offset); 
  662.             //int i; 
  663.             //for (i = 0, buf[i] = mbb.get(); buf[i] != 0; buf[++i] = mbb.get()); 
  664.             int i = 0
  665.             byte[] buf = new byte[256]; 
  666.             while ((buf[i] = mbb.get()) != 0) { 
  667.                 ++ i; 
  668.                 if (i >= buf.length) { 
  669.                     byte[] tmp = new byte[i + 100]; 
  670.                     System.arraycopy(buf, 0, tmp, 0, i); 
  671.                     buf = tmp; 
  672.                 } 
  673.             } 
  674.             if (i != 0
  675.                 return Utils.getString(buf, 0, i, "GBK"); 
  676.         } catch (IllegalArgumentException e) { 
  677.             System.out.println(e.getMessage()); 
  678.         } 
  679.         return ""
  680.     } 
  681.  
  682.     public String getAddress(String ip) { 
  683.         String country = getCountry(ip).equals(" CZ88.NET") ? "" 
  684.                 : getCountry(ip); 
  685.         String area = getArea(ip).equals(" CZ88.NET") ? "" : getArea(ip); 
  686.         String address = country + " " + area; 
  687.         return address.trim(); 
  688.     } 
package com.worthtech.app.util.ip;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteOrder;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;

/**
 * <pre>
 * 用来读取QQwry.dat文件,以根据ip获得好友位置,QQwry.dat的格式是
 * 一. 文件头,共8字节
 *    1. 第一个起始IP的绝对偏移, 4字节
 *     2. 最后一个起始IP的绝对偏移, 4字节
 * 二. &quot;结束地址/国家/区域&quot;记录区
 *     四字节ip地址后跟的每一条记录分成两个部分
 *     1. 国家记录
 *     2. 地区记录
 *     但是地区记录是不一定有的。而且国家记录和地区记录都有两种形式
 *     1. 以0结束的字符串
 *     2. 4个字节,一个字节可能为0x1或0x2
 *   a. 为0x1时,表示在绝对偏移后还跟着一个区域的记录,注意是绝对偏移之后,而不是这四个字节之后
 *        b. 为0x2时,表示在绝对偏移后没有区域记录
 *        不管为0x1还是0x2,后三个字节都是实际国家名的文件内绝对偏移
 *   如果是地区记录,0x1和0x2的含义不明,但是如果出现这两个字节,也肯定是跟着3个字节偏移,如果不是
 *        则为0结尾字符串
 * 三. &quot;起始地址/结束地址偏移&quot;记录区
 *     1. 每条记录7字节,按照起始地址从小到大排列
 *        a. 起始IP地址,4字节
 *        b. 结束ip地址的绝对偏移,3字节
 * 
 * 注意,这个文件里的ip地址和所有的偏移量均采用little-endian格式,而java是采用
 * big-endian格式的,要注意转换
 * </pre>
 * 
 * @author 马若劼
 */
public class IPSeeker {
	/**
	 * <pre>
	 * 用来封装ip相关信息,目前只有两个字段,ip所在的国家和地区
	 * </pre>
	 * 
	 * @author 马若劼
	 */
	private class IPLocation {
		public String country;
		public String area;

		public IPLocation() {
			country = area = "";
		}

		public IPLocation getCopy() {
			IPLocation ret = new IPLocation();
			ret.country = country;
			ret.area = area;
			return ret;
		}
	}

	private static final String IP_FILE = IPSeeker.class.getResource(
			"QQWry.dat").toString().substring(5);

	// 一些固定常量,比如记录长度等等
	private static final int IP_RECORD_LENGTH = 7;
	private static final byte AREA_FOLLOWED = 0x01;
	private static final byte NO_AREA = 0x2;

	// 用来做为cache,查询一个ip时首先查看cache,以减少不必要的重复查找
	private final Hashtable ipCache;
	// 随机文件访问类
	private RandomAccessFile ipFile;
	// 内存映射文件
	private MappedByteBuffer mbb;
	// 单一模式实例
	private static IPSeeker instance = new IPSeeker();
	// 起始地区的开始和结束的绝对偏移
	private long ipBegin, ipEnd;
	// 为提高效率而采用的临时变量
	private final IPLocation loc;
//	private final byte[] buf;//不需要了
	private final byte[] b4;
	private final byte[] b3;

	/**
	 * 私有构造函数
	 */
	private IPSeeker() {
		ipCache = new Hashtable();
		loc = new IPLocation();
//		buf = new byte[100];//不需要了,这里初始化不好!
		b4 = new byte[4];
		b3 = new byte[3];
		try {
			ipFile = new RandomAccessFile(IP_FILE, "r");
		} catch (FileNotFoundException e) {
			System.out.println(IPSeeker.class.getResource("QQWry.dat").toString());
			System.out.println(IP_FILE);
			System.out.println("IP地址信息文件没有找到,IP显示功能将无法使用");
			ipFile = null;

		}
		// 如果打开文件成功,读取文件头信息
		if (ipFile != null) {
			try {
				ipBegin = readLong4(0);
				ipEnd = readLong4(4);
				if (ipBegin == -1 || ipEnd == -1) {
					ipFile.close();
					ipFile = null;
				}
			} catch (IOException e) {
				System.out.println("IP地址信息文件格式有错误,IP显示功能将无法使用");
				ipFile = null;
			}
		}
	}

	/**
	 * @return 单一实例
	 */
	public static IPSeeker getInstance() {
		return instance;
	}

	/**
	 * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
	 * 
	 * @param s
	 *            地点子串
	 * @return 包含IPEntry类型的List
	 */
	public List getIPEntriesDebug(String s) {
		List ret = new ArrayList();
		long endOffset = ipEnd + 4;
		for (long offset = ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) {
			// 读取结束IP偏移
			long temp = readLong3(offset);
			// 如果temp不等于-1,读取IP的地点信息
			if (temp != -1) {
				IPLocation loc = getIPLocation(temp);
				// 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续
				if (loc.country.indexOf(s) != -1 || loc.area.indexOf(s) != -1) {
					IPEntry entry = new IPEntry();
					entry.country = loc.country;
					entry.area = loc.area;
					// 得到起始IP
					readIP(offset - 4, b4);
					entry.beginIp = Utils.getIpStringFromBytes(b4);
					// 得到结束IP
					readIP(temp, b4);
					entry.endIp = Utils.getIpStringFromBytes(b4);
					// 添加该记录
					ret.add(entry);
				}
			}
		}
		return ret;
	}

	/**
	 * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
	 * 
	 * @param s
	 *            地点子串
	 * @return 包含IPEntry类型的List
	 */
	public List getIPEntries(String s) {
		List ret = new ArrayList();
		try {
			// 映射IP信息文件到内存中
			if (mbb == null) {
				FileChannel fc = ipFile.getChannel();
				mbb = fc.map(FileChannel.MapMode.READ_ONLY, 0, ipFile.length());
				mbb.order(ByteOrder.LITTLE_ENDIAN);
			}

			int endOffset = (int) ipEnd;
			for (int offset = (int) ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) {
				int temp = readInt3(offset);
				if (temp != -1) {
					IPLocation loc = getIPLocation(temp);
					// 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续
					if (loc.country.indexOf(s) != -1
							|| loc.area.indexOf(s) != -1) {
						IPEntry entry = new IPEntry();
						entry.country = loc.country;
						entry.area = loc.area;
						// 得到起始IP
						readIP(offset - 4, b4);
						entry.beginIp = Utils.getIpStringFromBytes(b4);
						// 得到结束IP
						readIP(temp, b4);
						entry.endIp = Utils.getIpStringFromBytes(b4);
						// 添加该记录
						ret.add(entry);
					}
				}
			}
		} catch (IOException e) {
			System.out.println(e.getMessage());
		}
		return ret;
	}

	/**
	 * 从内存映射文件的offset位置开始的3个字节读取一个int
	 * 
	 * @param offset
	 * @return
	 */
	private int readInt3(int offset) {
		mbb.position(offset);
		return mbb.getInt() & 0x00FFFFFF;
	}

	/**
	 * 从内存映射文件的当前位置开始的3个字节读取一个int
	 * 
	 * @return
	 */
	private int readInt3() {
		return mbb.getInt() & 0x00FFFFFF;
	}

	/**
	 * 根据IP得到国家名
	 * 
	 * @param ip
	 *            ip的字节数组形式
	 * @return 国家名字符串
	 */
	public String getCountry(byte[] ip) {
		// 检查ip地址文件是否正常
		if (ipFile == null)
			return "错误的IP数据库文件";
		// 保存ip,转换ip字节数组为字符串形式
		String ipStr = Utils.getIpStringFromBytes(ip);
		// 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件
		if (ipCache.containsKey(ipStr)) {
			IPLocation loc = (IPLocation) ipCache.get(ipStr);
			return loc.country;
		} else {
			IPLocation loc = getIPLocation(ip);
			ipCache.put(ipStr, loc.getCopy());
			return loc.country;
		}
	}

	/**
	 * 根据IP得到国家名
	 * 
	 * @param ip
	 *            IP的字符串形式
	 * @return 国家名字符串
	 */
	public String getCountry(String ip) {
		return getCountry(Utils.getIpByteArrayFromString(ip));
	}

	/**
	 * 根据IP得到地区名
	 * 
	 * @param ip
	 *            ip的字节数组形式
	 * @return 地区名字符串
	 */
	public String getArea(byte[] ip) {
		// 检查ip地址文件是否正常
		if (ipFile == null)
			return "错误的IP数据库文件";
		// 保存ip,转换ip字节数组为字符串形式
		String ipStr = Utils.getIpStringFromBytes(ip);
		// 先检查cache中是否已经包含有这个ip的结果,没有再搜索文件
		if (ipCache.containsKey(ipStr)) {
			IPLocation loc = (IPLocation) ipCache.get(ipStr);
			return loc.area;
		} else {
			IPLocation loc = getIPLocation(ip);
			ipCache.put(ipStr, loc.getCopy());
			return loc.area;
		}
	}

	/**
	 * 根据IP得到地区名
	 * 
	 * @param ip
	 *            IP的字符串形式
	 * @return 地区名字符串
	 */
	public String getArea(String ip) {
		return getArea(Utils.getIpByteArrayFromString(ip));
	}

	/**
	 * 根据ip搜索ip信息文件,得到IPLocation结构,所搜索的ip参数从类成员ip中得到
	 * 
	 * @param ip
	 *            要查询的IP
	 * @return IPLocation结构
	 */
	private IPLocation getIPLocation(byte[] ip) {
		IPLocation info = null;
		long offset = locateIP(ip);
		if (offset != -1)
			info = getIPLocation(offset);
		if (info == null) {
			info = new IPLocation();
			info.country = "未知国家";
			info.area = "未知地区";
		}
		return info;
	}

	/**
	 * 从offset位置读取4个字节为一个long,因为java为big-endian格式,所以没办法 用了这么一个函数来做转换
	 * 
	 * @param offset
	 * @return 读取的long值,返回-1表示读取文件失败
	 */
	private long readLong4(long offset) {
		long ret = 0;
		try {
			ipFile.seek(offset);
			ret |= (ipFile.readByte() & 0xFF);
			ret |= ((ipFile.readByte() << 8) & 0xFF00);
			ret |= ((ipFile.readByte() << 16) & 0xFF0000);
			ret |= ((ipFile.readByte() << 24) & 0xFF000000);
			return ret;
		} catch (IOException e) {
			return -1;
		}
	}

	/**
	 * 从offset位置读取3个字节为一个long,因为java为big-endian格式,所以没办法 用了这么一个函数来做转换
	 * 
	 * @param offset
	 * @return 读取的long值,返回-1表示读取文件失败
	 */
	private long readLong3(long offset) {
		long ret = 0;
		try {
			ipFile.seek(offset);
			ipFile.readFully(b3);
			ret |= (b3[0] & 0xFF);
			ret |= ((b3[1] << 8) & 0xFF00);
			ret |= ((b3[2] << 16) & 0xFF0000);
			return ret;
		} catch (IOException e) {
			return -1;
		}
	}

	/**
	 * 从当前位置读取3个字节转换成long
	 * 
	 * @return
	 */
	private long readLong3() {
		long ret = 0;
		try {
			ipFile.readFully(b3);
			ret |= (b3[0] & 0xFF);
			ret |= ((b3[1] << 8) & 0xFF00);
			ret |= ((b3[2] << 16) & 0xFF0000);
			return ret;
		} catch (IOException e) {
			return -1;
		}
	}

	/**
	 * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
	 * 文件中是little-endian形式,将会进行转换
	 * 
	 * @param offset
	 * @param ip
	 */
	private void readIP(long offset, byte[] ip) {
		try {
			ipFile.seek(offset);
			ipFile.readFully(ip);
			byte temp = ip[0];
			ip[0] = ip[3];
			ip[3] = temp;
			temp = ip[1];
			ip[1] = ip[2];
			ip[2] = temp;
		} catch (IOException e) {
			System.out.println(e.getMessage());
		}
	}

	/**
	 * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
	 * 文件中是little-endian形式,将会进行转换
	 * 
	 * @param offset
	 * @param ip
	 */
	private void readIP(int offset, byte[] ip) {
		mbb.position(offset);
		mbb.get(ip);
		byte temp = ip[0];
		ip[0] = ip[3];
		ip[3] = temp;
		temp = ip[1];
		ip[1] = ip[2];
		ip[2] = temp;
	}

	/**
	 * 把类成员ip和beginIp比较,注意这个beginIp是big-endian的
	 * 
	 * @param ip
	 *            要查询的IP
	 * @param beginIp
	 *            和被查询IP相比较的IP
	 * @return 相等返回0,ip大于beginIp则返回1,小于返回-1。
	 */
	private int compareIP(byte[] ip, byte[] beginIp) {
		for (int i = 0; i < 4; i++) {
			int r = compareByte(ip[i], beginIp[i]);
			if (r != 0)
				return r;
		}
		return 0;
	}

	/**
	 * 把两个byte当作无符号数进行比较
	 * 
	 * @param b1
	 * @param b2
	 * @return 若b1大于b2则返回1,相等返回0,小于返回-1
	 */
	private int compareByte(byte b1, byte b2) {
		if ((b1 & 0xFF) > (b2 & 0xFF)) // 比较是否大于
			return 1;
		else if ((b1 ^ b2) == 0)// 判断是否相等
			return 0;
		else
			return -1;
	}

	/**
	 * 这个方法将根据ip的内容,定位到包含这个ip国家地区的记录处,返回一个绝对偏移 方法使用二分法查找。
	 * 
	 * @param ip
	 *            要查询的IP
	 * @return 如果找到了,返回结束IP的偏移,如果没有找到,返回-1
	 */
	private long locateIP(byte[] ip) {
		long m = 0;
		int r;
		// 比较第一个ip项
		readIP(ipBegin, b4);
		r = compareIP(ip, b4);
		if (r == 0)
			return ipBegin;
		else if (r < 0)
			return -1;
		// 开始二分搜索
		for (long i = ipBegin, j = ipEnd; i < j;) {
			m = getMiddleOffset(i, j);
			readIP(m, b4);
			r = compareIP(ip, b4);
			// log.debug(Utils.getIpStringFromBytes(b));
			if (r > 0)
				i = m;
			else if (r < 0) {
				if (m == j) {
					j -= IP_RECORD_LENGTH;
					m = j;
				} else
					j = m;
			} else
				return readLong3(m + 4);
		}
		// 如果循环结束了,那么i和j必定是相等的,这个记录为最可能的记录,但是并非
		// 肯定就是,还要检查一下,如果是,就返回结束地址区的绝对偏移
		m = readLong3(m + 4);
		readIP(m, b4);
		r = compareIP(ip, b4);
		if (r <= 0)
			return m;
		else
			return -1;
	}

	/**
	 * 得到begin偏移和end偏移中间位置记录的偏移
	 * 
	 * @param begin
	 * @param end
	 * @return
	 */
	private long getMiddleOffset(long begin, long end) {
		long records = (end - begin) / IP_RECORD_LENGTH;
		records >>= 1;
		if (records == 0)
			records = 1;
		return begin + records * IP_RECORD_LENGTH;
	}

	/**
	 * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构
	 * 
	 * @param offset
	 * @return
	 */
	private IPLocation getIPLocation(long offset) {
		try {
			// 跳过4字节ip
			ipFile.seek(offset + 4);
			// 读取第一个字节判断是否标志字节
			byte b = ipFile.readByte();
			if (b == AREA_FOLLOWED) {
				// 读取国家偏移
				long countryOffset = readLong3();
				// 跳转至偏移处
				ipFile.seek(countryOffset);
				// 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向
				b = ipFile.readByte();
				if (b == NO_AREA) {
					loc.country = readString(readLong3());
					ipFile.seek(countryOffset + 4);
				} else
					loc.country = readString(countryOffset);
				// 读取地区标志
				loc.area = readArea(ipFile.getFilePointer());
			} else if (b == NO_AREA) {
				loc.country = readString(readLong3());
				loc.area = readArea(offset + 8);
			} else {
				loc.country = readString(ipFile.getFilePointer() - 1);
				loc.area = readArea(ipFile.getFilePointer());
			}
			return loc;
		} catch (IOException e) {
			return null;
		}
	}

	/**
	 * @param offset
	 * @return
	 */
	private IPLocation getIPLocation(int offset) {
		// 跳过4字节ip
		mbb.position(offset + 4);
		// 读取第一个字节判断是否标志字节
		byte b = mbb.get();
		if (b == AREA_FOLLOWED) {
			// 读取国家偏移
			int countryOffset = readInt3();
			// 跳转至偏移处
			mbb.position(countryOffset);
			// 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向
			b = mbb.get();
			if (b == NO_AREA) {
				loc.country = readString(readInt3());
				mbb.position(countryOffset + 4);
			} else
				loc.country = readString(countryOffset);
			// 读取地区标志
			loc.area = readArea(mbb.position());
		} else if (b == NO_AREA) {
			loc.country = readString(readInt3());
			loc.area = readArea(offset + 8);
		} else {
			loc.country = readString(mbb.position() - 1);
			loc.area = readArea(mbb.position());
		}
		return loc;
	}

	/**
	 * 从offset偏移开始解析后面的字节,读出一个地区名
	 * 
	 * @param offset
	 * @return 地区名字符串
	 * @throws IOException
	 */
	private String readArea(long offset) throws IOException {
		ipFile.seek(offset);
		byte b = ipFile.readByte();
		if (b == 0x01 || b == 0x02) {
			long areaOffset = readLong3(offset + 1);
			if (areaOffset == 0)
				return "未知地区";
			else
				return readString(areaOffset);
		} else
			return readString(offset);
	}

	/**
	 * @param offset
	 * @return
	 */
	private String readArea(int offset) {
		mbb.position(offset);
		byte b = mbb.get();
		if (b == 0x01 || b == 0x02) {
			int areaOffset = readInt3();
			if (areaOffset == 0)
				return "未知地区";
			else
				return readString(areaOffset);
		} else
			return readString(offset);
	}

	/**
	 * 从offset偏移处读取一个以0结束的字符串
	 * 
	 * @param offset
	 * @return 读取的字符串,出错返回空字符串
	 */
	private String readString(long offset) {
		try {
			ipFile.seek(offset);
			//int i;
			//for (i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte());
			//上面的写法读取数据如果超过100个字节就会报数组越界异常
			int i = 0;
			byte[] buf = new byte[256];
			while ((buf[i] = ipFile.readByte()) != 0) {
			    ++ i;
			    if (i >= buf.length) {
			        byte[] tmp = new byte[i + 100];
			        System.arraycopy(buf, 0, tmp, 0, i);
			        buf = tmp;
			    }
			}
			/
			if (i != 0)
				return Utils.getString(buf, 0, i, "GBK");
		} catch (IOException e) {
			System.out.println(e.getMessage());
		}
		return "";
	}

	/**
	 * 从内存映射文件的offset位置得到一个0结尾字符串
	 * 
	 * @param offset
	 * @return
	 */
	private String readString(int offset) {
		try {
			mbb.position(offset);
			//int i;
			//for (i = 0, buf[i] = mbb.get(); buf[i] != 0; buf[++i] = mbb.get());
			int i = 0;
			byte[] buf = new byte[256];
			while ((buf[i] = mbb.get()) != 0) {
			    ++ i;
			    if (i >= buf.length) {
			        byte[] tmp = new byte[i + 100];
			        System.arraycopy(buf, 0, tmp, 0, i);
			        buf = tmp;
			    }
			}
			if (i != 0)
				return Utils.getString(buf, 0, i, "GBK");
		} catch (IllegalArgumentException e) {
			System.out.println(e.getMessage());
		}
		return "";
	}

	public String getAddress(String ip) {
		String country = getCountry(ip).equals(" CZ88.NET") ? ""
				: getCountry(ip);
		String area = getArea(ip).equals(" CZ88.NET") ? "" : getArea(ip);
		String address = country + " " + area;
		return address.trim();
	}
}
    12 楼    gundumw100    2010-01-22      引用
这么这个版本和我的不一样
IPSeeker.getInstance()哪里去了?
兄弟不会是在别人的基础上改的吧?
11 楼    gundumw100    2010-01-22      引用
//readString推荐这样写
private String readString(int offset) {
try {
mbb.position(offset);
//int i;
//for (i = 0, buf[i] = mbb.get(); buf[i] != 0; buf[++i] = mbb.get());
int i = 0;
byte[] buf = new byte[100];
while ((buf[i] = mbb.get()) != 0) {
    ++ i;
    if (i >= buf.length) {
        byte[] tmp = new byte[i + 100];
        System.arraycopy(buf, 0, tmp, 0, i);
        buf = tmp;
    }
}
if (i != 0)
return Utils.getString(buf, 0, i, "GBK");
} catch (IllegalArgumentException e) {
System.out.println(e.getMessage());
}
return "";
}

或者构造函数里面把buf放大:
buf = new byte[1024];
就能解决上面的异常,原因是buf 太小了
10 楼    gundumw100    2010-01-22      引用
IPSeeker seeker = IPSeeker.getInstance();

List list=seeker.getIPEntries("上海市");
抛java.lang.ArrayIndexOutOfBoundsException异常
IPSeeker.readString(int)这里抛出来的!
9 楼    spook99    2009-10-15      引用
小弟有一事不明

// 用来做为cache,查询一个ip时首先查看cache,以减少不必要的重复查找  
    private Map<String, IPLocation> ipCache;

这个缓存如果调用多次,是否还起到缓存的作用啊,因为放到web上是多线程的。并发是否安全。不知道楼主考虑了类似的问题没有。 
8 楼    zhiblin    2009-06-15      引用
ferreousbox 写道
readString方法中如下的代码有缺陷:
Java代码 复制代码 收藏代码
  1. for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte()); 
for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte());

读取数据如果超过100个字节就会报数组越界异常,我在通过地址查询IP记录时就出现了这个错误,建议改成如下代码:
Java代码 复制代码 收藏代码
  1. int i = 0
  2. byte[] buf = new byte[100]; 
  3. while ((buf[i] = ipFile.readByte()) != 0) { 
  4.     ++ i; 
  5.     if (i >= buf.length) { 
  6.         byte[] tmp = new byte[i + 100]; 
  7.         System.arraycopy(buf, 0, tmp, 0, i); 
  8.         buf = tmp; 
  9.     } 
int i = 0;
byte[] buf = new byte[100];
while ((buf[i] = ipFile.readByte()) != 0) {
    ++ i;
    if (i >= buf.length) {
        byte[] tmp = new byte[i + 100];
        System.arraycopy(buf, 0, tmp, 0, i);
        buf = tmp;
    }
}


基本思路看懂了,谢谢楼主
7 楼    ferreousbox    2009-06-15      引用
readString方法中如下的代码有缺陷:
Java代码 复制代码 收藏代码
  1. for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte()); 
for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte());

读取数据如果超过100个字节就会报数组越界异常,我在通过地址查询IP记录时就出现了这个错误,建议改成如下代码:
Java代码 复制代码 收藏代码
  1. int i = 0
  2. byte[] buf = new byte[100]; 
  3. while ((buf[i] = ipFile.readByte()) != 0) { 
  4.     ++ i; 
  5.     if (i >= buf.length) { 
  6.         byte[] tmp = new byte[i + 100]; 
  7.         System.arraycopy(buf, 0, tmp, 0, i); 
  8.         buf = tmp; 
  9.     } 
int i = 0;
byte[] buf = new byte[100];
while ((buf[i] = ipFile.readByte()) != 0) {
    ++ i;
    if (i >= buf.length) {
        byte[] tmp = new byte[i + 100];
        System.arraycopy(buf, 0, tmp, 0, i);
        buf = tmp;
    }
}

    6 楼    finux    2009-05-27      引用
不错,谢谢!

不过...
1.
Util类中为什么要定义一个static的StringBuilder
Java代码 复制代码 收藏代码
  1. private static StringBuilder sb = new StringBuilder();  
private static StringBuilder sb = new StringBuilder(); 

StringBuilder并非线程安全的,也许换成StringBuffer会更好吧。
其实,倒不如直接在getIpStringFromBytes方法里面直接new一个局部的StrinbBuilder。

2.
对于IPSeeker类,如果在WEB应用中,用户来一个请求,难道我就要去new一个IPSeeker吗?我想也许整个工程只需要一个这样的实例就OK了吧。那么这样的话,那些public方法是不是也应该考虑同步呢?

呵呵。。。最近正需要一个这样的IPSeeker,无意看到此文,3Q~
  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值