HttpClient发起请求ClientProtocolException和Target host is not specified问题分析

      项目中遇到了这个问题,于是翻了源码,找到了问题,同时上网搜了解决办法,希望能帮助到大家。

一:错误日志:

HttpClient发起请求ClientProtocolException和Target host is not specified问题分析_第1张图片二:问题分析

debug查找源码发现问题:

        HttpHost target = null;

        final URI requestURI = request.getURI();
        if (requestURI.isAbsolute()) {
            target = URIUtils.extractHost(requestURI);
            if (target == null) {
                throw new ClientProtocolException("URI does not specify a valid host name:"
                        + requestURI);
            }
        }
        return target;

对URI的判断if (requestURI.isAbsolute())为false, 最终返回的HttpHost对象为null导致. 如果请求的url为空或null, 也会出现该问题.

三:解决办法:

请求的url需要带上请求协议, 如http, https等, 且url不能为空

 

本文参考链接:https://blog.csdn.net/lslk9898/article/details/86490383

你可能感兴趣的:(成神之路)