码迷,mamicode.com
首页 > Web开发 > 详细

从HTTP请求中获取客户IP地址

时间:2014-11-25 16:07:45      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:http   ar   sp   for   bs   ad   as   tt   nbsp   

 /**
     * 从HTTP请求中获取客户IP地址
     *
     * @param request http请求
     * @return 客户IP地址
     */
    public static String getIPAddress( 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;
    }

从HTTP请求中获取客户IP地址

标签:http   ar   sp   for   bs   ad   as   tt   nbsp   

原文地址:http://www.cnblogs.com/wangkeai/p/4120904.html

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