1. 程式人生 > >java實現根據ip地址獲取地理位置

java實現根據ip地址獲取地理位置

記錄學習使用,轉載地址:http://www.jb51.net/article/54287.htm

程式呼叫了“騰訊ip分享計劃”提供的介面,當然也可以改成ip138提供的介面,不過這兩個網站返回的字串格式有些不同,要分別做解析。

public String getAddressByIP()
{ 
  try
  {
    String strIP = "0.0.0.0";
    URL url = new URL( "http://ip.qq.com/cgi-bin/searchip?searchip1=" + strIP); 
    URLConnection conn = url.openConnection(); 
    BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "GBK")); 
    String line = null; 
    StringBuffer result = new StringBuffer(); 
    while((line = reader.readLine()) != null)
    { 
      result.append(line); 
    } 
    reader.close(); 
    strIP = result.substring(result.indexOf( "該IP所在地為:" ));
    strIP = strIP.substring(strIP.indexOf( ":") + 1);
    String province = strIP.substring(6, strIP.indexOf("省"));
    String city = strIP.substring(strIP.indexOf("省") + 1, strIP.indexOf("市"));
    ... ...
    ... ...
  }
  catch( IOException e)
  { 
    return "讀取失敗"; 
  }
}

附:

新浪介面:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=

淘寶介面:http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址字串]

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

知道對方QQ的話,先關掉瀏覽器之類的會連線網路的東西,然後從開始選單開啟執行,在裡面輸入cmd,開啟黑色的shell視窗,在裡面輸入netstat -n,檢視你當前的網路連線,然後開始跟你要查ip的那個朋友聊天,二人世界哦,就你們倆聊。這時候再在那個shell視窗中輸入一次netstat -n,檢視一下新增的網路連線,那個ip就是你朋友的ip地址了,然後到這個網站去查就知道他所在的地理位置了,http://www.ip.cn。由於現在很多地方的ip地址都是動態分配的,所以你每次查到的ip地址可能都不一樣,但是查到的地理位置應該都是一樣的。希望能幫到你。