记录一次unable to find valid certification path to requested target报错解决方式

出现这个报错是因为客户端发起的http请求缺少证书,如果服务端提供了证书,客户端按照服务端的要求安装证书即可,如果没有证书咋们可以使用apache提供方法进行绕过ssl认证达到正常的请求。下面咋们拿代码举例说明。

    public static String doGet() {
        String uriAPI = "https://127.0.0.1:4430/demo";
        String result = "";
        HttpGet httpRequst = new HttpGet(uriAPI);
        try {  //普通的请求方式
//            CloseableHttpResponse httpResponse = new DefaultHttpClient().execute(httpRequst);
            CloseableHttpClient closeableHttpClient = doGetH.getcloseableHttpClient();
            //使用DefaultHttpClient类的execute方法发送HTTP GET请求,并返回HttpResponse对象。   绕过SSL方式
            HttpResponse httpResponse = closeableHttpClient.execute(httpRequst);//其中HttpGet是HttpUriRequst的子类
            if (httpResponse.getStatusLine().getStatusCode() == 200) {
                HttpEntity httpEntity = httpResponse.getEntity();
                result = EntityUtils.toString(httpEntity);//取出应答字符串
                // 一般来说都要删除多余的字符
                result.replaceAll("\r", "");//去掉返回结果中的"\r"字符,否则会在结果字符串后面显示一个小方格
            } else
                httpRequst.abort();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
            result = e.getMessage().toString();
        } catch (IOException e) {
            e.printStackTrace();
            result = e.getMessage().toString();
        }
        return result;
    }
    //绕过SSL认证
    public static CloseableHttpClient getcloseableHttpClient() {
        try {
            SSLContext context = new SSLContextBuilder().loadTrustMaterial(null, new TrustStrategy() {
                @Override
                public boolean isTrusted(X509Certificate[] x509Certificates, String s) throws CertificateException {
                    return true;
                }
            }).build();
            SSLConnectionSocketFactory factory = new SSLConnectionSocketFactory(context, NoopHostnameVerifier.INSTANCE);
            return HttpClients.custom().setSSLSocketFactory(factory).build();
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        } catch (KeyManagementException e) {
            e.printStackTrace();
        } catch (KeyStoreException e) {
            e.printStackTrace();
        }
        return HttpClients.createDefault();
    }
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一人荡江湖@

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值