使用淘宝接口查询ip归属地
生活随笔
收集整理的這篇文章主要介紹了
使用淘宝接口查询ip归属地
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
首先很抱歉的說一句,因為這個需求是很久之前弄的,然后也是找的資料,但是因為沒有保存原網址。。。所以就沒有貼原址了。 寫這個主要是為了方便自己以后查看。(找到原址了我會立馬貼上,或者有知道的大兄弟們也可以告訴我下謝謝!)
?廢話說了一堆 進入正題。
? ? ?先看下淘寶的官方API介紹:
淘寶ip查詢地址
1. 請求接口(GET):
/service/getIpInfo.php?ip=[ip地址字串]
2. 響應信息:
(json格式的)國家 、省(自治區或直轄市)、市(縣)、運營商
3. 返回數據格式:
{"code":0,"data":{"ip":"210.75.225.254","country":"\u4e2d\u56fd","area":"\u534e\u5317",
"region":"\u5317\u4eac\u5e02","city":"\u5317\u4eac\u5e02","county":"","isp":"\u7535\u4fe1",
"country_id":"86","area_id":"100000","region_id":"110000","city_id":"110000",
"county_id":"-1","isp_id":"100017"}}
其中code的值的含義為,0:成功,1:失敗。
public class AddressUtils { /** * * @param content * 請求的參數 格式為:name=xxx&pwd=xxx * @param encoding * 服務器端請求編碼。如GBK,UTF-8等 * @return * @throws UnsupportedEncodingException */ public String getAddresses(String content, String encodingString) throws UnsupportedEncodingException { // 這里調用pconline的接口 String urlStr = "http://ip.taobao.com/service/getIpInfo.php"; // 從http://whois.pconline.com.cn取得IP所在的省市區信息 String returnStr = this.getResult(urlStr, content, encodingString); if (returnStr != null) { // 處理返回的省市區信息 System.out.println(returnStr); String[] temp = returnStr.split(","); if(temp.length<3){ return "0";//無效IP,局域網測試 } String country = (temp[2].split(":"))[1].replaceAll("\"", ""); //country = decodeUnicode(country);// 省份 return country; } return null; } /** * @param urlStr * 請求的地址 * @param content * 請求的參數 格式為:name=xxx&pwd=xxx * @param encoding * 服務器端請求編碼。如GBK,UTF-8等 * @return */ private String getResult(String urlStr, String content, String encoding) { URL url = null; HttpURLConnection connection = null; try { url = new URL(urlStr); connection = (HttpURLConnection) url.openConnection();// 新建連接實例 connection.setConnectTimeout(2000);// 設置連接超時時間,單位毫秒 connection.setReadTimeout(2000);// 設置讀取數據超時時間,單位毫秒 connection.setDoOutput(true);// 是否打開輸出流 true|false connection.setDoInput(true);// 是否打開輸入流true|false connection.setRequestMethod("POST");// 提交方法POST|GET connection.setUseCaches(false);// 是否緩存true|false connection.connect();// 打開連接端口 DataOutputStream out = new DataOutputStream(connection .getOutputStream());// 打開輸出流往對端服務器寫數據 out.writeBytes(content);// 寫數據,也就是提交你的表單 name=xxx&pwd=xxx out.flush();// 刷新 out.close();// 關閉輸出流 BufferedReader reader = new BufferedReader(new InputStreamReader( connection.getInputStream(), encoding));// 往對端寫完數據對端服務器返回數據 // ,以BufferedReader流來讀取 StringBuffer buffer = new StringBuffer(); String line = ""; while ((line = reader.readLine()) != null) { buffer.append(line); } reader.close(); return buffer.toString(); } catch (IOException e) { e.printStackTrace(); } finally { if (connection != null) { connection.disconnect();// 關閉連接 } } return null; } /** * unicode 轉換成 中文 * * @author fanhui 2007-3-15 * @param theString * @return */ /* public static String decodeUnicode(String theString) { char aChar; int len = theString.length(); StringBuffer outBuffer = new StringBuffer(len); for (int x = 0; x < len;) { aChar = theString.charAt(x++); if (aChar == '\\') { aChar = theString.charAt(x++); if (aChar == 'u') { int value = 0; for (int i = 0; i < 4; i++) { aChar = theString.charAt(x++); switch (aChar) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': value = (value << 4) + aChar - '0'; break; case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': value = (value << 4) + 10 + aChar - 'a'; break; case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': value = (value << 4) + 10 + aChar - 'A'; break; default: throw new IllegalArgumentException( "Malformed encoding."); } } outBuffer.append((char) value); } else { if (aChar == 't') { aChar = '\t'; } else if (aChar == 'r') { aChar = '\r'; } else if (aChar == 'n') { aChar = '\n'; } else if (aChar == 'f') { aChar = '\f'; } outBuffer.append(aChar); } } else { outBuffer.append(aChar); } } return outBuffer.toString(); } */// 測試 public static void main(String[] args) { AddressUtils addressUtils = new AddressUtils(); // 測試ip 219.136.134.157 中國=華南=廣東省=廣州市=越秀區=電信 String ip = "34.235.245.2"; String address = ""; try { address = addressUtils.getAddresses("ip="+ip, "utf-8"); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println(address); // 輸出結果為:廣東省,廣州市,越秀區 } 比較簡單的東西 隨手百度就有了。總結
以上是生活随笔為你收集整理的使用淘宝接口查询ip归属地的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: i5 1155G7怎么样?核显相当于什么
- 下一篇: 评估标准——PI、LPIPS,PSNR和