获取客户端真实ip地址

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.getRemoteAddr();
    if (ip.equals("0:0:0:0:0:0:0:1") || ip.equals("127.0.0.1")) {
        /** 根据网卡取本机配置的IP */
        InetAddress inet = null;
        try {
            inet = InetAddress.getLocalHost();
            ip = inet.getHostAddress();
        } catch (UnknownHostException e) {
            logger.severe("IpHelper error." + e.toString());
        }
    }
}


/**
 * 对于通过多个代理的情况, 第一个IP为客户端真实IP,多个IP按照','分割 "***.***.***.***".length() =
 * 15
 */
if (ip != null && ip.length() > 15) {
    if (ip.indexOf(",") > 0) {
        ip = ip.substring(0, ip.indexOf(","));
    }
}
return ip;

猜你喜欢

转载自blog.csdn.net/weixin_41825468/article/details/84957919