首页 > 其他 > 详细

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

时间:2014-10-12 01:49:58      阅读:258      评论:0      收藏:0      [点我收藏+]

根据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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!