亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用httpclient怎么實現https

發布時間:2021-06-18 15:26:40 來源:億速云 閱讀:229 作者:Leah 欄目:大數據

使用httpclient怎么實現https,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

package com.neusoft.sample.opscopereq;

import java.io.InputStream;
import java.nio.charset.Charset;
import java.security.KeyStore;
import java.security.SecureRandom;
import java.security.cert.CertificateFactory;
import java.util.Base64;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSession;
import javax.net.ssl.TrustManagerFactory;

import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

import com.alibaba.fastjson.JSONObject;

public class M {
    public static void main(String[] args) throws Exception {
        InputStream inputStream = M.class.getClassLoader().getResourceAsStream("sssssss.crt");
        CertificateFactory certificateFactory = CertificateFactory.getInstance("X.509");
        KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
        keyStore.load(null);
        String certificateAlias = Integer.toString(0);
        keyStore.setCertificateEntry(certificateAlias, certificateFactory.generateCertificate(inputStream));
        inputStream.close();
        SSLContext sslContext = SSLContext.getInstance("TLS");
        TrustManagerFactory trustManagerFactory = TrustManagerFactory
                .getInstance(TrustManagerFactory.getDefaultAlgorithm());

        trustManagerFactory.init(keyStore);
        sslContext.init(null, trustManagerFactory.getTrustManagers(), new SecureRandom());
           CloseableHttpClient client = HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier(new   HostnameVerifier() {
            
            public boolean verify(String hostname, SSLSession session) {
                // TODO Auto-generated method stub
                return true;
            }
        })   .build();
           
            HttpPost http = new HttpPost("www.url.com");
            
             String USERNAME = "user";

             String PASSWORD = "psw";
            String auth = USERNAME + ":" + PASSWORD;
            byte[] encodedAuth = Base64.getEncoder().encode(auth.getBytes(Charset.forName("US-ASCII")));
            String AUTH_HEADER_VAL = "Basic " + new String(encodedAuth);
            http.setHeader("Authorization", AUTH_HEADER_VAL);
            
            JSONObject paramObj = new JSONObject();
            paramObj.put("industryCode", "517");
            paramObj.put("keyWord", "批發");
            paramObj.put("pageNum", 1);
            HttpEntity entity=new StringEntity(paramObj.toJSONString(), "application/json;", "utf-8");
             
            http.setEntity(entity);

          CloseableHttpResponse res = client.execute(http);
          
          String aa = EntityUtils.toString( res.getEntity() );

         System.out.println(aa);
    }

}
 

    
        <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpcore</artifactId>
            <version>4.4.10</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.5.6</version>
        </dependency>
        
        

看完上述內容,你們掌握使用httpclient怎么實現https的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

玛沁县| 郑州市| 成安县| 蒲城县| 交城县| 杨浦区| 泰和县| 来宾市| 五大连池市| 铜梁县| 广丰县| 台中市| 孝义市| 来宾市| 嘉鱼县| 金华市| 富蕴县| 湘乡市| 尚志市| 迭部县| 安图县| 德安县| 保康县| 霍州市| 长岭县| 五指山市| 罗定市| 万宁市| 仁化县| 白水县| 辽宁省| 股票| 涿鹿县| 贵溪市| 翼城县| 色达县| 乐陵市| 双流县| 长武县| 师宗县| 垦利县|