码迷,mamicode.com
首页 > 其他好文 > 详细

根据request获取当前访问人的IP

时间:2014-10-12 02:58:47      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:request   null   public   

根据request获取IP的方式:

public static String getIpAddr(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 ip;
    }

注意:当访问地址为localhost时 地址格式为 0:0:0:0:0:0:1

访问地址写为127.0.0.1时正常


本文出自 “javaruler” 博客,请务必保留此出处http://tengjs.blog.51cto.com/5641106/1562600

根据request获取当前访问人的IP

标签:request   null   public   

原文地址:http://tengjs.blog.51cto.com/5641106/1562600

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