httpclients里的new HttpHost("locahost", 80);是什么意思

发布于 2021-11-27 21:32:39 字数 244 浏览 855 评论 1

httpclients

HttpHost localhost = new HttpHost("locahost", 80);
cm.setMaxPerRoute(new HttpRoute(localhost), 50);



这两行是什么意思

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凡尘雨 2021-11-29 01:47:38

本人还是建议看看源码的,httpHost的对应的构造函数

    /**

     * Constructor for HttpHost.

     *   

     *
@param hostname the hostname (IP or DNS name). Can be <code>null</code>.

     *
@param port the port. Value <code>-1</code> can be used to set default protocol port

     */

    public HttpHost(final String hostname, int port) {

        this(hostname, port, Protocol.getProtocol("http"));

    }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文