All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.wwmxd.util.ClientUtil Maven / Gradle / Ivy

There is a newer version: 1.1.4-Release
Show newest version
package cn.wwmxd.util;

import javax.servlet.http.HttpServletRequest;

public class ClientUtil {
	/**
	 * 获取客户端真实ip
	 * @param request  htto请求
	 * @return 实际ip
	 */
	public static String getClientIp(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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy