Java通过IP获取所在地

Java通过IP获取所在地

我在这用的是腾讯地图api

 

/** 
     *  
     * @param content 
     *            请求的参数 格式为:name=xxx&pwd=xxx 
     * @param encoding 
     *            服务器端请求编码。如GBK,UTF-8等 
     * @return 
     * @throws UnsupportedEncodingException 
     */  
	public static String getAddresses(String content, String encodingString)  
            throws UnsupportedEncodingException {  
       
    	
        String urlStr = "https://apis.map.qq.com/ws/location/v1/ip";  
        
        String returnStr = getResult(urlStr, content, encodingString);  
        if (returnStr != null) {  
            // 处理返回的省市区信息  
            //System.out.println("(1) unicode转换成中文前的returnStr : " + returnStr);  
            //returnStr = decodeUnicode(returnStr);  
            //System.out.println("(2) unicode转换成中文后的returnStr : " + returnStr);  
            String[] temp = returnStr.split(",");  
            if(temp.length<3){  
                return "0";//无效IP,局域网测试  
            }  
            return returnStr;  
        }  
        return null;  
    }  
    /** 
     * @param urlStr 
     *            请求的地址 
     * @param content 
     *            请求的参数 格式为:name=xxx&pwd=xxx 
     * @param encoding 
     *            服务器端请求编码。如GBK,UTF-8等 
     * @return 
     */  
    private static String getResult(String urlStr, String content, String encoding) {  
        URL url = null;  
        HttpURLConnection connection = null;  
        try {  
            url = new URL(urlStr+content);  
            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;  
    } 

 

 填写要查询的ip key填写腾讯地图服务平台-->控制台你的key

public static void main(String[] args) {
            填写要查询的ip key填写腾讯地图服务平台-->控制台你的key
            String ip ="";  
	        String key = "";
	        String address = "";  
	        try {  
	            address = Gituser.getAddresses("?ip="+ip+"&key="+key, "utf-8");  
	        } catch (UnsupportedEncodingException e) {  
	            // TODO Auto-generated catch block  
	            e.printStackTrace();  
	        }  
	        //去除返回数据的空格和{ }符号
	        String add = address.replace(" ", "").replace("{", "").replace("}", "");
            //遍历输出
	        String[] arr = add.split(",");
	        for(int i =0;i

 

你可能感兴趣的:(Java)