如何通过httpclient获取访问域名的真实ip
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何通过httpclient获取访问域名的真实ip相关的知识,希望对你有一定的参考价值。
需求:由于目标网站cdn节点很多需要获取到访问当次是哪个ip。1、实现接口HttpConnectionManager新加实现类A,直接复制SimpleHttpConnectionManager的类内容。
2、A类增加方法
public Socket getSocket() {
return this.httpConnection.getSocket();
}
3、为httpClient指定HttpConnectionManager
方法为 httpClient 指定httpClient.setHttpConnectionManager(new A());
4、httpClient.executeMethod执行后获取httpClient.getHttpConnectionManager(),强制转换为A.
5、通过getSocket().getInetAddress().getHostAddress()可以获取到当次请求真实ip.
以上是关于如何通过httpclient获取访问域名的真实ip的主要内容,如果未能解决你的问题,请参考以下文章