码迷,mamicode.com
首页 > 编程语言 > 详细

Java获取服务器IP和客户端IP

时间:2018-02-17 00:40:24      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:ddr   header   res   字符   cal   获取   gpo   cas   param   

服务器IP:

String addr = InetAddress.getLocalHost().getHostAddress();

说明:很明显上面是没考虑到服务器有多个iP的情况。

客户顿啊IP:

  /**
     * 获取IP
     *
     * @param request HttpServletRequest
     * @return IP字符串
     */
    public static String getRemoteHost(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.getRemoteAddr();
        }
        return "0:0:0:0:0:0:0:1".equals(ip) ? "127.0.0.1" : ip;
    }

 

Java获取服务器IP和客户端IP

标签:ddr   header   res   字符   cal   获取   gpo   cas   param   

原文地址:https://www.cnblogs.com/EasonJim/p/8451322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!