91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在Java中利用httpclient調用https接口

發布時間:2021-02-07 19:20:02 來源:億速云 閱讀:259 作者:Leah 欄目:開發技術

怎么在Java中利用httpclient調用https接口?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

通過httpclient的get post方式調用http很常見。一般都是

HttpClient client = new DefaultHttpClient(); 
HttpPost post = new HttpPost(http://127.0.0.1/login);

但是如果要調用https這個方式就不行了。就要修改DefaultHttpClient

<dependency>
 <groupId>org.apache.httpcomponents</groupId>
 <artifactId>httpclient</artifactId>
 <version>4.5.5</version>
</dependency>

<dependency>
 <groupId>com.alibaba</groupId>
 <artifactId>fastjson</artifactId>
 <version>1.2.47</version>
</dependency>

先導入包

然后重寫DefaultHttpClient的類

import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
import org.apache.http.conn.ClientConnectionManager;
import org.apache.http.conn.scheme.Scheme;
import org.apache.http.conn.scheme.SchemeRegistry;
import org.apache.http.conn.ssl.SSLSocketFactory;
import org.apache.http.impl.client.DefaultHttpClient;

public class SSLClient extends DefaultHttpClient {
 public SSLClient() throws Exception{
  super();
  SSLContext ctx = SSLContext.getInstance("TLS");
  X509TrustManager tm = new X509TrustManager() {
    @Override
    public void checkClientTrusted(X509Certificate[] chain,
      String authType) throws CertificateException {
    }
    @Override
    public void checkServerTrusted(X509Certificate[] chain,
      String authType) throws CertificateException {
    }
    @Override
    public X509Certificate[] getAcceptedIssuers() {
     return null;
    }
  };
  ctx.init(null, new TrustManager[]{tm}, null);
  SSLSocketFactory ssf = new SSLSocketFactory(ctx,SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
  ClientConnectionManager ccm = this.getConnectionManager();
  SchemeRegistry sr = ccm.getSchemeRegistry();
  sr.register(new Scheme("https", 443, ssf));
 }
}

這時候就可以使用https方式調用了

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.message.BasicHeader;
import org.apache.http.util.EntityUtils;

public class HttpClientUtil {

 public static String doGet(String url,String charset) throws Exception{
  HttpClient httpClient = null;
  HttpGet Httpget = null;
  String result = null;

   httpClient = new SSLClient();
   Httpget = new HttpGet(url);
   Httpget.addHeader("Content-Type", "application/json");
   HttpGet.setEntity(se);
   HttpResponse response = httpClient.execute(Httpget);
   if(response != null){
    HttpEntity resEntity = response.getEntity();
    if(resEntity != null){
     result = EntityUtils.toString(resEntity,charset);
    }
   }

  return result;
 }
 public static String doPost(String url,String json,String charset) throws Exception{
  HttpClient httpClient = null;
  HttpPost HttpPost = null;
  String result = null;

   httpClient = new SSLClient();
   HttpPost = new HttpPost(url);
   HttpPost.addHeader("Content-Type", "application/json");
   StringEntity se = new StringEntity(json);
   se.setContentType("text/json");
   se.setContentEncoding(new BasicHeader("Content-Type", "application/json"));
   HttpPost.setEntity(se);
   HttpResponse response = httpClient.execute(HttpPost);
   if(response != null){
    HttpEntity resEntity = response.getEntity();
    if(resEntity != null){
     result = EntityUtils.toString(resEntity,charset);
    }
   }

  return result;
 }	
}

post調用代碼

public static void main(String[] args) throws Exception{ 
  String url = "https://127.0.0.1/getuser";
  String json = "{\"id\":1}";
  String str = HttpClientUtil.doPost(url, json, "utf-8");
  System.out.println(str);
 }

get調用代碼

public static void main(String[] args) throws Exception{ 
  String url = "https://127.0.0.1/getuser?id=1";
  String str = HttpClientUtil.doPost(url, "utf-8");
  System.out.println(str);
 }

StringEntity參數說明
se.setContentEncoding(new BasicHeader(“Content-Type”, “application/json”));
使用的是json模式 所以傳的格式是json

application/xhtml+xml :XHTML格式
application/xml : XML數據格式
application/atom+xml :Atom XML聚合格式
application/json : JSON數據格式
application/pdf :pdf格式
application/msword : Word文檔格式
application/octet-stream : 二進制流數據(如常見的文件下載)
application/x-www-form-urlencoded : 中默認的encType,form表單數據被編碼為key/value格式發送到服務器(表單默認的提交數據的格式)

HttpPost.addHeader("Content-Type", " application/x-www-form-urlencoded");
List<NameValuePair> params=new ArrayList<>();
params.add(new BasicNameValuePair("key1","value1"));
params.add(new BasicNameValuePair("key2","value2"));
params.add(new BasicNameValuePair("key3","value3"));
UrlEncodedFormEntity entity=new UrlEncodedFormEntity(params,"UTF-8");
HttpPost.setEntity(entity);

關于怎么在Java中利用httpclient調用https接口問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

九江市| 和平县| 大姚县| 万安县| 曲松县| 安阳市| 克山县| 荔波县| 虎林市| 女性| 漳浦县| 三原县| 德化县| 奉节县| 高青县| 桐梓县| 改则县| 平遥县| 农安县| 额尔古纳市| 彭山县| 海晏县| 曲阳县| 平罗县| 灵武市| 花垣县| 枣庄市| 三门县| 隆林| 札达县| 井研县| 株洲市| 富阳市| 佛学| 汶川县| 行唐县| 田东县| 中阳县| 益阳市| 同德县| 南通市|