如何使用 apache httpclient 4.1.2 选择多个网络接口
我有多个网络接口(如 WIFI、LAN、LTE dougle)。我使用 apache httpclient 4.1.2 发送 http 请求。我想在发送http请求时选择网络接口。我可以使用 java.net.NetworkInterface 类查看网络接口。谁能帮助我如何使用 http 客户端来做到这一点?我想使用一个网络接口发送一个 http 请求,使用另一个接口发送第二个 http 请求。就像负载平衡一样
I have multiple network interface(Like WIFI,LAN,LTE dougle).I am sending http request using apache httpclient 4.1.2. I want to select the network interface during sending the http request. I can see the network interfaces using java.net.NetworkInterface class. Can anyone help me how can i do it using http client? I want to send one http request using one network interface and second http request using the other interface. Its like load balancing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 ConnRoutePNames.LOCAL_ADDRESS='http.route.local-address' 参数设置为所需接口的 INetAddress。有关详细信息,请参阅本文档的第 2.4 节。
You can set the ConnRoutePNames.LOCAL_ADDRESS='http.route.local-address' parameter to the INetAddress of the desired interface. See section 2.4 of this doc for more information.