java實現根據ip地址擷取地理位置的代碼分享_java

來源:互聯網
上載者:User

前幾天想給網站後台加個解析ip所在地理位置的功能,在網上看了一些部落格,找了幾段程式,但總覺得寫的不夠簡潔,感覺很囉嗦。下面這個程式,感覺還算簡潔,於是整理調試了一下,可以用,程式調用了“騰訊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地址字串]

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.