中获取客户端的远程地址

中获取客户端的远程地址

本文介绍了如何在 servlet 中获取客户端的远程地址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么办法可以让我得到客户端访问服务器的原始 IP 地址?我可以使用request.getRemoteAddr(),但我似乎总是获取代理或网络服务器的IP.

Is there any way that I could get the original IP address of the client coming to the server?I can use request.getRemoteAddr(), but I always seem to get the IP of the proxy or the web server.

我想知道客户端用于连接到我的 IP 地址.反正我能拿到吗?

I would want to know the IP address that the client is using to connect to me. Is there anyway that I could get it?

推荐答案

试试这个:

public static String getClientIpAddr(HttpServletRequest request) {
        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;
    }

这篇关于如何在 servlet 中获取客户端的远程地址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 17:12