程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> javaweb-java如何獲取客戶端登入時的ip

javaweb-java如何獲取客戶端登入時的ip

編輯:編程綜合問答
java如何獲取客戶端登入時的ip

我做了一個網站,如何獲取客戶端登入時客戶端的ip,求大神指教

最佳回答:


 /**
 * 通過HttpServletRequest返回IP地址
 * @param request HttpServletRequest
 * @return ip String
 * @throws Exception
 */
public String getIpAddr(HttpServletRequest request) throws Exception {
    String ip = request.getHeader("x-forwarded-for");
    if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
        ip = request.getHeader("Proxy-Client-IP");
    }
    if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
        ip = request.getHeader("WL-Proxy-Client-IP");
    }
    if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
        ip = request.getHeader("HTTP_CLIENT_IP");
    }
    if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
        ip = request.getHeader("HTTP_X_FORWARDED_FOR");
    }
    if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
        ip = request.getRemoteAddr();
    }
    return ip;
}



 /**
 * 通過IP地址獲取MAC地址
 * @param ip String,127.0.0.1格式
 * @return mac String
 * @throws Exception
 */
public String getMACAddress(String ip) throws Exception {
    String line = "";
    String macAddress = "";
    final String MAC_ADDRESS_PREFIX = "MAC Address = ";
    final String LOOPBACK_ADDRESS = "127.0.0.1";
    //如果為127.0.0.1,則獲取本地MAC地址。
    if (LOOPBACK_ADDRESS.equals(ip)) {
        InetAddress inetAddress = InetAddress.getLocalHost();
        //貌似此方法需要JDK1.6。
        byte[] mac = NetworkInterface.getByInetAddress(inetAddress).getHardwareAddress();
        //下面代碼是把mac地址拼裝成String
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < mac.length; i++) {
            if (i != 0) {
                sb.append("-");
            }
            //mac[i] & 0xFF 是為了把byte轉化為正整數
            String s = Integer.toHexString(mac[i] & 0xFF);
            sb.append(s.length() == 1 ? 0 + s : s);
        }
        //把字符串所有小寫字母改為大寫成為正規的mac地址並返回
        macAddress = sb.toString().trim().toUpperCase();
        return macAddress;
    }
    //獲取非本地IP的MAC地址
    try {
        Process p = Runtime.getRuntime().exec("nbtstat -A " + ip);
        InputStreamReader isr = new InputStreamReader(p.getInputStream());
        BufferedReader br = new BufferedReader(isr);
        while ((line = br.readLine()) != null) {
            if (line != null) {
                int index = line.indexOf(MAC_ADDRESS_PREFIX);
                if (index != -1) {
                    macAddress = line.substring(index + MAC_ADDRESS_PREFIX.length()).trim().toUpperCase();
                }
            }
        }
        br.close();
    } catch (IOException e) {
        e.printStackTrace(System.out);
    }
    return macAddress;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved