java中怎么获取客户端的真实的ip和端口号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中怎么获取客户端的真实的ip和端口号相关的知识,希望对你有一定的参考价值。
参考技术A public static String getHostIpAddress()String hostIp = "";
InetAddress netAddress = getInetAddress();
hostIp = getHostIp(netAddress);
return hostIp;
public static InetAddress getInetAddress()
try
return InetAddress.getLocalHost();
catch (UnknownHostException e)
System.out.println("unknown host!");
return null;
public static String getHostIp(InetAddress netAddress)
if (null == netAddress)
return null;
String ip = netAddress.getHostAddress(); // get the ip address
return ip;
public static String getHostName(InetAddress netAddress)
if (null == netAddress)
return null;
String name = netAddress.getHostName(); // get the host address
return name;
本回答被提问者采纳
java servlet获取客户端IP
怎么用servlet在服务器 监听获得访问网站的人的IP?
想让服务器自动开始监听 不要自己在去调用 Filter怎么写?
request.getRemoteAddr()的方法获取的IP实际上是代理服务器的地址,并不是客户端的IP地址。
于是可得出获得客户端真实IP地址的方法一:
public String getRemortIP(HttpServletRequest request)
if (request.getHeader("x-forwarded-for") == null)
return request.getRemoteAddr();
return request.getHeader("x-forwarded-for");
你可以写一个Filter配置在web.xml中 让服务器启动的时候就开始监听 直到服务器停止! 参考技术A 监听是写个listener吧,当有新的用户登录时触发listener,然后获得IP。
当然Filter也可以,针对登录的URL进行过滤,把每次有登录的请求时,记录下来IP。
filter和listener都可以在web.xml里配置,设成load-on-startup为1就可以了。 参考技术B request.getRemoteAddr();
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
Returns:
a String containing the IP address of the client that sent the request
这是现成的api,不知道满足吗?
以上是关于java中怎么获取客户端的真实的ip和端口号的主要内容,如果未能解决你的问题,请参考以下文章