HttpClient Http Post方法請求


POST請求用於向伺服器傳送資料; 例如,使用HTML表單的客戶資訊,檔案上載等。
HttpClient API提供了一個名為HttpPost的類,它表示POST請求。

使用HttpClient庫的HTTP POST請求。

第1步 - 建立HttpClient物件

HttpClients類的createDefault()方法返回類CloseableHttpClient物件,該類是HttpClient介面的基本實現。

使用此方法在HttpClient物件上建立。

CloseableHttpClient httpClient = HttpClients.createDefault();

第2步 - 建立HttpPost物件
HttpPost類表示HTTP POST請求。它將傳送所需資料並使用URI檢索給定伺服器的資訊。

通過範例化HttpPost類並將表示URI的字串值作為引數傳遞給其建構函式來建立此請求。

HttpGet httpGet = new HttpGet("http://www.kaops.com/");

第3步 - 執行獲取請求
CloseableHttpClient物件的execute()方法接受HttpUriRequest(介面)物件(即:HttpGetHttpPostHttpPutHttpHead等)並返回響應物件。

HttpResponse httpResponse = httpclient.execute(httpget);

範例

以下是演示使用HttpClient庫執行HTTP POST請求的範例。

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;

public class HttpPostExample {

   public static void main(String args[]) throws Exception{

      //Creating a HttpClient object
      CloseableHttpClient httpclient = HttpClients.createDefault();

      //Creating a HttpGet object
      HttpPost httppost = new HttpPost("http://www.kaops.com/");

      //Printing the method used
      System.out.println("Request Type: "+httppost.getMethod());

      //Executing the Get request
      HttpResponse httpresponse = httpclient.execute(httppost);

      Scanner sc = new Scanner(httpresponse.getEntity().getContent());

      //Printing the status line
      System.out.println(httpresponse.getStatusLine());
      while(sc.hasNext()){
         System.out.println(sc.nextLine());
      }
   }
}

執行上面範例程式碼,得到以下結果 -

Request Type: POST
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>考評師 - 一個專注於面試題和知識測評的網站</title>
        <meta name="baidu-site-verification" content="SMo5w14fvk" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
        <meta name="keywords" content="考試,面試,面試題,考試題">
        <meta name="description" content="考評師網是一個專注於提供知識考評測試和面試題的網站。匯集了各個行業,各種技術,知識等面試題和知識測試。">
        <link rel="stylesheet" href="/static/layui/css/layui.css">
        <link rel="stylesheet" href="/static/css/global.css">
    </head>

......