HttpClient Http Get方法請求


GET方法請求用於使用給定的URI從給定伺服器檢索資訊。使用GET的請求應僅檢索資料,並且不應對資料產生其他影響。

HttpClient API提供了一個名為HttpGet的類,它表示get請求方法。

按照下面給出的步驟使用HttpClient庫傳送get請求。

第1步 - 建立一個HttpClient物件

HttpClients類的createDefault()方法返回一個CloseableHttpClient物件,該物件是HttpClient介面的基本實現。
使用此方法,建立一個HttpClient物件,如下所示 -

CloseableHttpClient httpclient = HttpClients.createDefault();

第2步 - 建立一個HttpGet物件

HttpGet類表示HTTP GET請求,該請求使用URI檢索給定伺服器的資訊。
通過範例化此類來建立HTTP GET請求。此類別建構函式接受表示URI的String值。

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

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

使用此方法執行請求,如下所示 -

HttpResponse httpresponse = httpclient.execute(httpget);

範例

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

import java.util.Scanner;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;

public class HttpGetExample {

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

      // 建立一個 HttpClient 物件
      CloseableHttpClient httpclient = HttpClients.createDefault();

      // 建立一個 HttpGet 物件
      HttpGet httpget = new HttpGet("https://www.kaops.com/ ");

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

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

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

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

上述程式生成以下輸出 -

<!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>
    <body>
        <div class="fly-header layui-bg-black">
    <div class="layui-container">
        <a class="fly-logo" href="/"> <img src="/static/images/logo.png" alt="考評師" style="width:136px;height:38px;"> </a>
        <ul class="layui-nav fly-nav ">
            <li class="layui-nav-item">
                <a href="http://kaops.com/iv/100" style="padding-left:20px;padding-right:20px;font-size:16px;">Java面試題</a>
            </li>
            <li class="layui-nav-item">
                <a href="http://kaops.com/iv/360" style="padding-left:20px;padding-right:20px;font-size:16px;">資料庫面試題</a>
            </li>
            <li class="layui-nav-item">
                <a href="http://kaops.com/iv/530" style="padding-left:20px;padding-right:20px;font-size:16px;">IT基礎面試題</a>
            </li>
        </ul>
... ...