LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 3927|回复: 8

用来读取QQwry.dat的java代码

[复制链接]
发表于 2004-8-11 12:32:06 | 显示全部楼层 |阅读模式
从lumaQQ中抄来的。:)

Utils.java
  1. /*
  2. * Created on 2004-8-4
  3. *
  4. */
  5. package com.bupticet.ip;

  6. import java.io.UnsupportedEncodingException;

  7. /**
  8. * @author LJ-silver
  9. */
  10. public class Utils {
  11.     /**
  12.      * 从ip的字符串形式得到字节数组形式
  13.      * @param ip 字符串形式的ip
  14.      * @return 字节数组形式的ip
  15.      */
  16.     public static byte[] getIpByteArrayFromString(String ip) {
  17.         byte[] ret = new byte[4];
  18.         java.util.StringTokenizer st = new java.util.StringTokenizer(ip, ".");
  19.         try {
  20.             ret[0] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
  21.             ret[1] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
  22.             ret[2] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
  23.             ret[3] = (byte)(Integer.parseInt(st.nextToken()) & 0xFF);
  24.         } catch (Exception e) {
  25.             System.out.println(e.getMessage());
  26.         }
  27.         return ret;
  28.     }
  29.    
  30.    
  31.     /**
  32.      * 对原始字符串进行编码转换,如果失败,返回原始的字符串
  33.      * @param s 原始字符串
  34.      * @param srcEncoding 源编码方式
  35.      * @param destEncoding 目标编码方式
  36.      * @return 转换编码后的字符串,失败返回原始字符串
  37.      */
  38.     public static String getString(String s, String srcEncoding, String destEncoding) {
  39.         try {
  40.             return new String(s.getBytes(srcEncoding), destEncoding);
  41.         } catch (UnsupportedEncodingException e) {
  42.             return s;
  43.         }
  44.     }
  45.    
  46.     /**
  47.      * 根据某种编码方式将字节数组转换成字符串
  48.      * @param b 字节数组
  49.      * @param encoding 编码方式
  50.      * @return 如果encoding不支持,返回一个缺省编码的字符串
  51.      */
  52.     public static String getString(byte[] b, String encoding) {
  53.         try {
  54.             return new String(b, encoding);
  55.         } catch (UnsupportedEncodingException e) {
  56.             return new String(b);
  57.         }
  58.     }
  59.    
  60.     /**
  61.      * 根据某种编码方式将字节数组转换成字符串
  62.      * @param b 字节数组
  63.      * @param offset 要转换的起始位置
  64.      * @param len 要转换的长度
  65.      * @param encoding 编码方式
  66.      * @return 如果encoding不支持,返回一个缺省编码的字符串
  67.      */
  68.     public static String getString(byte[] b, int offset, int len, String encoding) {
  69.         try {
  70.             return new String(b, offset, len, encoding);
  71.         } catch (UnsupportedEncodingException e) {
  72.             return new String(b, offset, len);
  73.         }
  74.     }
  75.    
  76.     /**
  77.      * @param ip ip的字节数组形式
  78.      * @return 字符串形式的ip
  79.      */
  80.     public static String getIpStringFromBytes(byte[] ip) {
  81.             StringBuffer sb = new StringBuffer();
  82.             sb.append(ip[0] & 0xFF);
  83.             sb.append('.');          
  84.             sb.append(ip[1] & 0xFF);
  85.             sb.append('.');          
  86.             sb.append(ip[2] & 0xFF);
  87.             sb.append('.');          
  88.             sb.append(ip[3] & 0xFF);
  89.             return sb.toString();
  90.     }

  91. }
复制代码
 楼主| 发表于 2004-8-11 12:33:40 | 显示全部楼层

IPEntry.java

  1. /*
  2. * LumaQQ - Java QQ Client
  3. *
  4. * Copyright (C) 2004 luma <stubma@163.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. package com.bupticet.ip;


  21. /**
  22. * <pre>
  23. * 一条IP范围记录,不仅包括国家和区域,也包括起始IP和结束IP
  24. * </pre>
  25. *
  26. * @author 马若劼
  27. */
  28. public class IPEntry {
  29.     public String beginIp;
  30.     public String endIp;
  31.     public String country;
  32.     public String area;
  33.    
  34.     /**
  35.      * 构造函数
  36.      */
  37.     public IPEntry() {
  38.         beginIp = endIp = country = area = "";
  39.     }
  40.    
  41.     public String toString(){
  42.             return this.area+"  "+this.country+"  IP范围:"+this.beginIp+"-"+this.endIp;
  43.     }
  44. }
复制代码
 楼主| 发表于 2004-8-11 12:35:01 | 显示全部楼层

IPSeeker.java

  1. /*
  2. * LumaQQ - Java QQ Client
  3. *
  4. * Copyright (C) 2004 luma <stubma@163.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. package com.bupticet.ip;


  21. import java.io.FileNotFoundException;
  22. import java.io.IOException;
  23. import java.io.RandomAccessFile;
  24. import java.nio.ByteOrder;
  25. import java.nio.MappedByteBuffer;
  26. import java.nio.channels.FileChannel;
  27. import java.util.ArrayList;
  28. import java.util.Hashtable;
  29. import java.util.List;




  30. /**
  31. * <pre>
  32. * 用来读取QQwry.dat文件,以根据ip获得好友位置,QQwry.dat的格式是
  33. * 一. 文件头,共8字节
  34. *            1. 第一个起始IP的绝对偏移, 4字节
  35. *     2. 最后一个起始IP的绝对偏移, 4字节
  36. * 二. "结束地址/国家/区域"记录区
  37. *     四字节ip地址后跟的每一条记录分成两个部分
  38. *     1. 国家记录
  39. *     2. 地区记录
  40. *     但是地区记录是不一定有的。而且国家记录和地区记录都有两种形式
  41. *     1. 以0结束的字符串
  42. *     2. 4个字节,一个字节可能为0x1或0x2
  43. *                   a. 为0x1时,表示在绝对偏移后还跟着一个区域的记录,注意是绝对偏移之后,而不是这四个字节之后
  44. *        b. 为0x2时,表示在绝对偏移后没有区域记录
  45. *        不管为0x1还是0x2,后三个字节都是实际国家名的文件内绝对偏移
  46. *                   如果是地区记录,0x1和0x2的含义不明,但是如果出现这两个字节,也肯定是跟着3个字节偏移,如果不是
  47. *        则为0结尾字符串
  48. * 三. "起始地址/结束地址偏移"记录区
  49. *     1. 每条记录7字节,按照起始地址从小到大排列
  50. *        a. 起始IP地址,4字节
  51. *        b. 结束ip地址的绝对偏移,3字节
  52. *
  53. * 注意,这个文件里的ip地址和所有的偏移量均采用little-endian格式,而java是采用
  54. * big-endian格式的,要注意转换
  55. * </pre>
  56. *
  57. * @author 马若劼
  58. */
  59. public class IPSeeker {
  60.         /**
  61.          * <pre>
  62.          * 用来封装ip相关信息,目前只有两个字段,ip所在的国家和地区
  63.          * </pre>
  64.          *
  65.          * @author 马若劼
  66.          */
  67.         private class IPLocation {
  68.                 public String country;
  69.                 public String area;

  70.                 public IPLocation() {
  71.                     country = area = "";
  72.                 }

  73.                 public IPLocation getCopy() {
  74.                     IPLocation ret = new IPLocation();
  75.                     ret.country = country;
  76.                     ret.area = area;
  77.                     return ret;
  78.                 }
  79.         }

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

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

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

  100.         /**
  101.          * 私有构造函数
  102.          */
  103.         private IPSeeker()  {
  104.                 ipCache = new Hashtable();
  105.                 loc = new IPLocation();
  106.                 buf = new byte[100];
  107.                 b4 = new byte[4];
  108.                 b3 = new byte[3];
  109.                 try {
  110.                         ipFile = new RandomAccessFile(IP_FILE, "r");
  111.                 } catch (FileNotFoundException e) {
  112.                         System.out.println(IPSeeker.class.getResource("/QQWry.dat").toString());
  113.                         System.out.println(IP_FILE);
  114.                         System.out.println("IP地址信息文件没有找到,IP显示功能将无法使用");
  115.                         ipFile = null;

  116.                 }
  117.                 // 如果打开文件成功,读取文件头信息
  118.                 if(ipFile != null) {
  119.                         try {
  120.                                 ipBegin = readLong4(0);
  121.                                 ipEnd = readLong4(4);
  122.                                 if(ipBegin == -1 || ipEnd == -1) {
  123.                                         ipFile.close();
  124.                                         ipFile = null;
  125.                                 }
  126.                         } catch (IOException e) {
  127.                                 System.out.println("IP地址信息文件格式有错误,IP显示功能将无法使用");
  128.                                 ipFile = null;
  129.                         }
  130.                 }
  131.         }

  132.         /**
  133.          * @return 单一实例
  134.          */
  135.         public static IPSeeker getInstance() {
  136.                 return instance;
  137.         }

  138.         /**
  139.          * 给定一个地点的不完全名字,得到一系列包含s子串的IP范围记录
  140.          * @param s 地点子串
  141.          * @return 包含IPEntry类型的List
  142.          */
  143.         public List getIPEntriesDebug(String s) {
  144.             List ret = new ArrayList();
  145.             long endOffset = ipEnd + 4;
  146.             for(long offset = ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) {
  147.                 // 读取结束IP偏移
  148.                 long temp = readLong3(offset);
  149.                 // 如果temp不等于-1,读取IP的地点信息
  150.                 if(temp != -1) {
  151.                     IPLocation loc = getIPLocation(temp);
  152.                     // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续
  153.                     if(loc.country.indexOf(s) != -1 || loc.area.indexOf(s) != -1) {
  154.                         IPEntry entry = new IPEntry();
  155.                         entry.country = loc.country;
  156.                         entry.area = loc.area;
  157.                         // 得到起始IP
  158.                             readIP(offset - 4, b4);
  159.                         entry.beginIp = Utils.getIpStringFromBytes(b4);
  160.                         // 得到结束IP
  161.                         readIP(temp, b4);
  162.                         entry.endIp = Utils.getIpStringFromBytes(b4);
  163.                         // 添加该记录
  164.                         ret.add(entry);
  165.                     }
  166.                 }
  167.             }
  168.             return ret;
  169.         }

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

  184.                     int endOffset = (int)ipEnd;
  185.             for(int offset = (int)ipBegin + 4; offset <= endOffset; offset += IP_RECORD_LENGTH) {
  186.                 int temp = readInt3(offset);
  187.                 if(temp != -1) {
  188.                         IPLocation loc = getIPLocation(temp);
  189.                         // 判断是否这个地点里面包含了s子串,如果包含了,添加这个记录到List中,如果没有,继续
  190.                         if(loc.country.indexOf(s) != -1 || 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.          * 从内存映射文件的offset位置开始的3个字节读取一个int
  212.          * @param offset
  213.          * @return
  214.          */
  215.         private int readInt3(int offset) {
  216.             mbb.position(offset);
  217.             return mbb.getInt() & 0x00FFFFFF;
  218.         }

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

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

  246.         /**
  247.          * 根据IP得到国家名
  248.          * @param ip IP的字符串形式
  249.          * @return 国家名字符串
  250.          */
  251.         public String getCountry(String ip) {
  252.             return getCountry(Utils.getIpByteArrayFromString(ip));
  253.         }

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

  274.         /**
  275.          * 根据IP得到地区名
  276.          * @param ip IP的字符串形式
  277.          * @return 地区名字符串
  278.          */
  279.         public String getArea(String ip) {
  280.             return getArea(Utils.getIpByteArrayFromString(ip));
  281.         }

  282.         /**
  283.          * 根据ip搜索ip信息文件,得到IPLocation结构,所搜索的ip参数从类成员ip中得到
  284.          * @param ip 要查询的IP
  285.          * @return IPLocation结构
  286.          */
  287.         private IPLocation getIPLocation(byte[] ip) {
  288.                 IPLocation info = null;
  289.                 long offset = locateIP(ip);
  290.                 if(offset != -1)
  291.                         info = getIPLocation(offset);
  292.                 if(info == null) {
  293.                         info = new IPLocation();
  294.                         info.country = "未知国家";
  295.                         info.area = "未知地区";
  296.                 }
  297.                 return info;
  298.         }

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

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

  337.         /**
  338.          * 从当前位置读取3个字节转换成long
  339.          * @return
  340.          */
  341.         private long readLong3() {
  342.                 long ret = 0;
  343.                 try {
  344.                         ipFile.readFully(b3);
  345.                         ret |= (b3[0] & 0xFF);
  346.                         ret |= ((b3[1] << 8) & 0xFF00);
  347.                         ret |= ((b3[2] << 16) & 0xFF0000);
  348.                         return ret;
  349.                 } catch (IOException e) {
  350.                         return -1;
  351.                 }
  352.         }

  353.         /**
  354.          * 从offset位置读取四个字节的ip地址放入ip数组中,读取后的ip为big-endian格式,但是
  355.          * 文件中是little-endian形式,将会进行转换
  356.          * @param offset
  357.          * @param ip
  358.          */
  359.         private void readIP(long offset, byte[] ip) {
  360.                 try {
  361.                         ipFile.seek(offset);
  362.                         ipFile.readFully(ip);
  363.                         byte temp = ip[0];
  364.                         ip[0] = ip[3];
  365.                         ip[3] = temp;
  366.                         temp = ip[1];
  367.                         ip[1] = ip[2];
  368.                         ip[2] = temp;
  369.                 } catch (IOException e) {
  370.                     System.out.println(e.getMessage());
  371.                 }
  372.         }

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

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

  403.         /**
  404.          * 把两个byte当作无符号数进行比较
  405.          * @param b1
  406.          * @param b2
  407.          * @return 若b1大于b2则返回1,相等返回0,小于返回-1
  408.          */
  409.         private int compareByte(byte b1, byte b2) {
  410.                 if((b1 & 0xFF) > (b2 & 0xFF)) // 比较是否大于
  411.                         return 1;
  412.                 else if((b1 ^ b2) == 0)// 判断是否相等
  413.                         return 0;
  414.                 else
  415.                         return -1;
  416.         }

  417.         /**
  418.          * 这个方法将根据ip的内容,定位到包含这个ip国家地区的记录处,返回一个绝对偏移
  419.          * 方法使用二分法查找。
  420.          * @param ip 要查询的IP
  421.          * @return 如果找到了,返回结束IP的偏移,如果没有找到,返回-1
  422.          */
  423.         private long locateIP(byte[] ip) {
  424.                 long m = 0;
  425.                 int r;
  426.                 // 比较第一个ip项
  427.                 readIP(ipBegin, b4);
  428.                 r = compareIP(ip, b4);
  429.                 if(r == 0) return ipBegin;
  430.                 else if(r < 0) return -1;
  431.                 // 开始二分搜索
  432.                 for(long i = ipBegin, j = ipEnd; i < j; ) {
  433.                         m = getMiddleOffset(i, j);
  434.                         readIP(m, b4);
  435.                         r = compareIP(ip, b4);
  436.                         // log.debug(Utils.getIpStringFromBytes(b));
  437.                         if(r > 0)
  438.                                 i = m;
  439.                         else if(r < 0) {
  440.                                 if(m == j) {
  441.                                         j -= IP_RECORD_LENGTH;
  442.                                         m = j;
  443.                                 } else
  444.                                         j = m;
  445.                         } else
  446.                                 return readLong3(m + 4);
  447.                 }
  448.                 // 如果循环结束了,那么i和j必定是相等的,这个记录为最可能的记录,但是并非
  449.                 //     肯定就是,还要检查一下,如果是,就返回结束地址区的绝对偏移
  450.                 m = readLong3(m + 4);
  451.                 readIP(m, b4);
  452.                 r = compareIP(ip, b4);
  453.                 if(r <= 0) return m;
  454.                 else return -1;
  455.         }

  456.         /**
  457.          * 得到begin偏移和end偏移中间位置记录的偏移
  458.          * @param begin
  459.          * @param end
  460.          * @return
  461.          */
  462.         private long getMiddleOffset(long begin, long end) {
  463.                 long records = (end - begin) / IP_RECORD_LENGTH;
  464.                 records >>= 1;
  465.                 if(records == 0) records = 1;
  466.                 return begin + records * IP_RECORD_LENGTH;
  467.         }

  468.         /**
  469.          * 给定一个ip国家地区记录的偏移,返回一个IPLocation结构
  470.          * @param offset
  471.          * @return
  472.          */
  473.         private IPLocation getIPLocation(long offset) {
  474.                 try {
  475.                         // 跳过4字节ip
  476.                         ipFile.seek(offset + 4);
  477.                         // 读取第一个字节判断是否标志字节
  478.                         byte b = ipFile.readByte();
  479.                         if(b == AREA_FOLLOWED) {
  480.                                 // 读取国家偏移
  481.                                 long countryOffset = readLong3();
  482.                                 // 跳转至偏移处
  483.                                 ipFile.seek(countryOffset);
  484.                                 // 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向
  485.                                 b = ipFile.readByte();
  486.                                 if(b == NO_AREA) {
  487.                                         loc.country = readString(readLong3());
  488.                                         ipFile.seek(countryOffset + 4);
  489.                                 } else
  490.                                         loc.country = readString(countryOffset);
  491.                                 // 读取地区标志
  492.                                 loc.area = readArea(ipFile.getFilePointer());
  493.                         } else if(b == NO_AREA) {
  494.                                 loc.country = readString(readLong3());
  495.                                 loc.area = readArea(offset + 8);
  496.                         } else {
  497.                                 loc.country = readString(ipFile.getFilePointer() - 1);
  498.                                 loc.area = readArea(ipFile.getFilePointer());
  499.                         }
  500.                         return loc;
  501.                 } catch (IOException e) {
  502.                         return null;
  503.                 }
  504.         }

  505.         /**
  506.          * @param offset
  507.          * @return
  508.          */
  509.         private IPLocation getIPLocation(int offset) {
  510.                 // 跳过4字节ip
  511.             mbb.position(offset + 4);
  512.                 // 读取第一个字节判断是否标志字节
  513.                 byte b = mbb.get();
  514.                 if(b == AREA_FOLLOWED) {
  515.                         // 读取国家偏移
  516.                         int countryOffset = readInt3();
  517.                         // 跳转至偏移处
  518.                         mbb.position(countryOffset);
  519.                         // 再检查一次标志字节,因为这个时候这个地方仍然可能是个重定向
  520.                         b = mbb.get();
  521.                         if(b == NO_AREA) {
  522.                                 loc.country = readString(readInt3());
  523.                                 mbb.position(countryOffset + 4);
  524.                         } else
  525.                                 loc.country = readString(countryOffset);
  526.                         // 读取地区标志
  527.                         loc.area = readArea(mbb.position());
  528.                 } else if(b == NO_AREA) {
  529.                         loc.country = readString(readInt3());
  530.                         loc.area = readArea(offset + 8);
  531.                 } else {
  532.                         loc.country = readString(mbb.position() - 1);
  533.                         loc.area = readArea(mbb.position());
  534.                 }
  535.                 return loc;
  536.         }

  537.         /**
  538.          * 从offset偏移开始解析后面的字节,读出一个地区名
  539.          * @param offset
  540.          * @return 地区名字符串
  541.          * @throws IOException
  542.          */
  543.         private String readArea(long offset) throws IOException {
  544.                 ipFile.seek(offset);
  545.                 byte b = ipFile.readByte();
  546.                 if(b == 0x01 || b == 0x02) {
  547.                         long areaOffset = readLong3(offset + 1);
  548.                         if(areaOffset == 0)
  549.                                 return "未知地区";
  550.                         else
  551.                                 return readString(areaOffset);
  552.                 } else
  553.                         return readString(offset);
  554.         }

  555.         /**
  556.          * @param offset
  557.          * @return
  558.          */
  559.         private String readArea(int offset) {
  560.                 mbb.position(offset);
  561.                 byte b = mbb.get();
  562.                 if(b == 0x01 || b == 0x02) {
  563.                         int areaOffset = readInt3();
  564.                         if(areaOffset == 0)
  565.                                 return "未知地区";
  566.                         else
  567.                                 return readString(areaOffset);
  568.                 } else
  569.                         return readString(offset);
  570.         }

  571.         /**
  572.          * 从offset偏移处读取一个以0结束的字符串
  573.          * @param offset
  574.          * @return 读取的字符串,出错返回空字符串
  575.          */
  576.         private String readString(long offset) {
  577.                 try {
  578.                         ipFile.seek(offset);
  579.                         int i;
  580.                         for(i = 0, buf[i] = ipFile.readByte(); buf[i] != 0; buf[++i] = ipFile.readByte());
  581.                         if(i != 0)
  582.                             return Utils.getString(buf, 0, i, "GBK");
  583.                 } catch (IOException e) {
  584.                     System.out.println(e.getMessage());
  585.                 }
  586.                 return "";
  587.         }

  588.         /**
  589.          * 从内存映射文件的offset位置得到一个0结尾字符串
  590.          * @param offset
  591.          * @return
  592.          */
  593.         private String readString(int offset) {
  594.             try {
  595.                         mbb.position(offset);
  596.                         int i;
  597.                         for(i = 0, buf[i] = mbb.get(); buf[i] != 0; buf[++i] = mbb.get());
  598.                         if(i != 0)
  599.                             return Utils.getString(buf, 0, i, "GBK");
  600.             } catch (IllegalArgumentException e) {
  601.                 System.out.println(e.getMessage());
  602.             }
  603.             return "";
  604.         }

  605.         public String getAddress(String ip){
  606.                 String country = getCountry(ip).equals(" CZ88.NET")?"":getCountry(ip);
  607.                 String area = getArea(ip).equals(" CZ88.NET")?"":getArea(ip);
  608.         String address = country+" "+area;
  609.                 return address.trim();
  610.         }
  611. }
复制代码
 楼主| 发表于 2004-8-11 12:37:59 | 显示全部楼层

调用方法

[注意:这个class和上面的3个class的package不同,请对应修改。]

  1. /**
  2. * @author LJ-silver
  3. */
  4. public class Test {

  5.         public static void main(String[] args) {
  6.                 com.ljsilver.ip2address.IPSeeker seeker = com.ljsilver.ip2address.IPSeeker.getInstance();

  7.                 if(args.length==2){
  8.                         if("ip".equals(args[0])){
  9.                                 System.out.println(args[0]+"的所在地址是:"+seeker.getAddress(args[1]));
  10.                         }else if("address".equals(args[0])){
  11.                                 List a = seeker.getIPEntries(args[1]);
  12.                       System.out.println(args[0]+":"); 
  13.                                 for(int i=0;i<a.size();i++){
  14.                                         System.out.println(a.get(i).toString());
  15.                                 }
  16.                         }else{
  17.                                 System.out.println("usage:java Test ip/address yourIpString/yourAddressString");
  18.                         }
  19.                 }else{
  20.                         System.out.println("usage:java Test ip/address yourIpString/yourAddressString");
  21.        
复制代码
发表于 2004-8-11 18:51:55 | 显示全部楼层
呵呵,我也抄了自己写了个小东西。

http://www.100-happy.com/pafiled ... tion=file&id=14
发表于 2004-8-19 09:09:09 | 显示全部楼层
发表于 2004-8-29 16:57:34 | 显示全部楼层
以前发布的版本有问题,修正了...唉。
发表于 2007-10-25 14:26:20 | 显示全部楼层
好像不好使帮忙弄弄吧
回复 支持 反对

使用道具 举报

发表于 2008-3-19 22:56:31 | 显示全部楼层
Luma 的这段代码被很多人正在使用,包括“天乙社区”。。
确实很不错。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表