中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

使用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

博罗县| 赤城县| 鄂尔多斯市| 邯郸市| 遵义市| 萍乡市| 镇原县| 林周县| 辽中县| 于都县| 维西| 扬中市| 大渡口区| 马公市| 鸡泽县| 天长市| 新泰市| 资兴市| 邹平县| 兖州市| 津南区| 襄汾县| 治多县| 城市| 嘉义县| 灵武市| 宜宾市| 秦安县| 乳山市| 景谷| 靖西县| 乌兰察布市| 青冈县| 伊宁市| 抚州市| 海兴县| 鄄城县| 岑巩县| 富锦市| 阳江市| 岗巴县|