IP 轉換爲實際地址 《二》

項目中,有這麼一個需求,要把用戶操作操作信息做成日誌。現在要獲取用戶的登錄IP地址。並轉爲實際地址。現在給出源碼。
第一步獲取用戶登錄IP

// 獲取外網真實 IP 地址
        public static String getV4IP(HttpServletRequest request){
            String ip = "";
            String chinaz = "http://ip.chinaz.com";

            StringBuilder inputLine = new StringBuilder();
            String read = "";
            URL url = null;
            HttpURLConnection urlConnection = null;
            BufferedReader in = null;
            try {
                url = new URL(chinaz);
                urlConnection = (HttpURLConnection) url.openConnection();
                in = new BufferedReader( new InputStreamReader(urlConnection.getInputStream(),"UTF-8"));
                while((read=in.readLine())!=null){
                    inputLine.append(read+"\r\n");
                }
                //System.out.println(inputLine.toString());
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }finally{
                if(in!=null){
                    try {
                        in.close();
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
            }

            Pattern p = Pattern.compile("\\<dd class\\=\"fz24\">(.*?)\\<\\/dd>");
            Matcher m = p.matcher(inputLine.toString());
            if(m.find()){
                String ipstr = m.group(1);
                ip = ipstr;
                //System.out.println(ipstr);
            }
            return ip;
        }

第二步把獲取IP 轉爲地址
給出源碼:IpLocationResult

package com.whf.util;

/**
 * 由ip地址對應的信息的對象模型
 * */
public class IpLocationResult {
    private Integer ret;
    private Integer start;
    private Integer end;
    /**
     * 國家
     * */
    private String country;
    /**
     * 省份
     * */
    private String province;
    /**
     * 城市
     * */
    private String city;
    private String district;
    /**
     * 網絡提供商
     * */
    private String isp;
    private String type;
    private String desc;
    public Integer getRet() {
        return ret;
    }
    public void setRet(Integer ret) {
        this.ret = ret;
    }
    public Integer getStart() {
        return start;
    }
    public void setStart(Integer start) {
        this.start = start;
    }
    public Integer getEnd() {
        return end;
    }
    public void setEnd(Integer end) {
        this.end = end;
    }
    public String getCountry() {
        return country;
    }
    public void setCountry(String country) {
        this.country = country;
    }
    public String getProvince() {
        return province;
    }
    public void setProvince(String province) {
        this.province = province;
    }
    public String getCity() {
        return city;
    }
    public void setCity(String city) {
        this.city = city;
    }
    public String getDistrict() {
        return district;
    }
    public void setDistrict(String district) {
        this.district = district;
    }
    public String getIsp() {
        return isp;
    }
    public void setIsp(String isp) {
        this.isp = isp;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getDesc() {
        return desc;
    }
    public void setDesc(String desc) {
        this.desc = desc;
    }

}

IpLocationService

package com.whf.util;


import com.google.gson.Gson;


/**
* 處理用戶位置信息的業務邏輯類
* @author HUPENG
* @version 1.0.0
* @since jdk1.7
* */
public  class IpLocationService {

    private IpLocationResult ipLocationResult;

    /**
     * 以ip地址獲取地理位置信息等,返回一個對象模型
     * @param ipAddress ip地址,形式諸如   123.123.123.123
     * */
    public IpLocationResult getIpLocationResult(String ipAddress){
        if (ipLocationResult!=null) {
            return ipLocationResult;
        }
        String url = "http://int.dpool.sina.com.cn/iplookup/iplookup.php";
        String param = "format=json&ip=" + ipAddress;
        String httpResponse = null;
        try {
            httpResponse = HttpRequest.sendGet(url, param);
        } catch (Exception e) {
            // TODO: handle exception
            System.err.println("發送GET請求時發生錯誤");
            e.printStackTrace();
        }


        try {
            ipLocationResult= new Gson().fromJson(httpResponse, IpLocationResult.class);
            return ipLocationResult;
        } catch (Exception e) {
            // TODO: handle exception
            //System.err.println("解析json字符串時發生錯誤,請不要使用例如127.0.0.1的訪問使用了本接口的網站");
            //e.printStackTrace();
            ipLocationResult = new IpLocationResult();
//          ipLocationResult.setCity("本地");
//          ipLocationResult.setCountry("本地");
            ipLocationResult.setCountry("本地");
            ipLocationResult.setProvince("");
            ipLocationResult.setCity("");;
            return ipLocationResult;
        }
    }
}

HttpRequest

package com.whf.util;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
import java.util.Map;

/**
 * 發送http請求的類
 * */
public class HttpRequest {
    /**
     * 向指定URL發送GET方法的請求
     * 
     * @param url
     *            發送請求的URL
     * @param param
     *            請求參數,請求參數應該是 name1=value1&name2=value2 的形式。
     * @return URL 所代表遠程資源的響應結果
     */
    public static String sendGet(String url, String param) {
        String result = "";
        BufferedReader in = null;
        try {
            String urlNameString = url + "?" + param;
            URL realUrl = new URL(urlNameString);
            // 打開和URL之間的連接
            URLConnection connection = realUrl.openConnection();
            // 設置通用的請求屬性
            connection.setRequestProperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 建立實際的連接
            connection.connect();
            // 獲取所有響應頭字段
            Map<String, List<String>> map = connection.getHeaderFields();
            // 遍歷所有的響應頭字段
            for (String key : map.keySet()) {
                //System.out.println(key + "--->" + map.get(key));
            }
            // 定義 BufferedReader輸入流來讀取URL的響應
            in = new BufferedReader(new InputStreamReader(
                    connection.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }
        } catch (Exception e) {
            System.out.println("發送GET請求出現異常!" + e);
            e.printStackTrace();
        }
        // 使用finally塊來關閉輸入流
        finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }
        return result;
    }

    /**
     * 向指定 URL 發送POST方法的請求
     * 
     * @param url
     *            發送請求的 URL
     * @param param
     *            請求參數,請求參數應該是 name1=value1&name2=value2 的形式。
     * @return 所代表遠程資源的響應結果
     */
    public static String sendPost(String url, String param) {
        PrintWriter out = null;
        BufferedReader in = null;
        String result = "";
        try {
            URL realUrl = new URL(url);
            // 打開和URL之間的連接
            URLConnection conn = realUrl.openConnection();
            // 設置通用的請求屬性
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 發送POST請求必須設置如下兩行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // 獲取URLConnection對象對應的輸出流
            out = new PrintWriter(conn.getOutputStream());
            // 發送請求參數
            out.print(param);
            // flush輸出流的緩衝
            out.flush();
            // 定義BufferedReader輸入流來讀取URL的響應
            in = new BufferedReader(
                    new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }
        } catch (Exception e) {
            System.out.println("發送 POST 請求出現異常!"+e);
            e.printStackTrace();
        }
        //使用finally塊來關閉輸出流、輸入流
        finally{
            try{
                if(out!=null){
                    out.close();
                }
                if(in!=null){
                    in.close();
                }
            }
            catch(IOException ex){
                ex.printStackTrace();
            }
        }
        return result;
    }
}

測試類

package com.whf.test;

public class Main {
    public static void main(String[] args) {

        String realIp = "58.100.3.125";
        IpLocationService ipLocationService = new IpLocationService();
        IpLocationResult ipLocationResult = ipLocationService.getIpLocationResult(realIp);
        String readlAaddress = ipLocationResult.getCountry()+ ipLocationResult.getProvince()+ipLocationResult.getCity()+ipLocationResult.getIsp() ;
        System.out.println(readlAaddress);

    }

}

測試結果:
IP地址獲取成功

《end》

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章