溫馨提示×

java http怎樣發(fā)送請求

小樊
82
2024-11-15 18:25:13
欄目: 編程語言

在Java中,可以使用HttpURLConnection類或者第三方庫Apache HttpClient來發(fā)送HTTP請求。這里我將為你提供兩種方法的示例代碼。

方法1:使用HttpURLConnection

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class Main {
    public static void main(String[] args) {
        try {
            String apiUrl = "https://api.example.com/data"; // 替換為你要請求的API URL
            URL url = new URL(apiUrl);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET"); // 設(shè)置請求方法,可以是GET、POST、PUT等
            connection.setRequestProperty("User-Agent", "Mozilla/5.0"); // 設(shè)置User-Agent
            connection.setConnectTimeout(5000); // 設(shè)置連接超時(shí)時(shí)間(毫秒)
            connection.setReadTimeout(5000); // 設(shè)置讀取數(shù)據(jù)超時(shí)時(shí)間(毫秒)

            int responseCode = connection.getResponseCode(); // 獲取響應(yīng)狀態(tài)碼
            System.out.println("Response Code: " + responseCode);

            if (responseCode == HttpURLConnection.HTTP_OK) {
                BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                String inputLine;
                StringBuilder response = new StringBuilder();

                while ((inputLine = in.readLine()) != null) {
                    response.append(inputLine);
                }
                in.close();

                System.out.println("Response: " + response.toString());
            } else {
                System.out.println("GET request failed");
            }

            connection.disconnect();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

方法2:使用Apache HttpClient

首先,需要添加Apache HttpClient庫的依賴。如果你使用Maven,可以在pom.xml文件中添加以下依賴:

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

然后,可以使用以下代碼發(fā)送HTTP請求:

import org.apache.http.HttpEntity;
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;
import org.apache.http.util.EntityUtils;

public class Main {
    public static void main(String[] args) {
        CloseableHttpClient httpClient = HttpClients.createDefault();
        String apiUrl = "https://api.example.com/data"; // 替換為你要請求的API URL
        String response = "";

        try {
            HttpGet httpGet = new HttpGet(apiUrl);
            httpGet.setHeader("User-Agent", "Mozilla/5.0"); // 設(shè)置User-Agent
            HttpResponse httpResponse = httpClient.execute(httpGet);
            int responseCode = httpResponse.getStatusLine().getStatusCode(); // 獲取響應(yīng)狀態(tài)碼
            System.out.println("Response Code: " + responseCode);

            if (responseCode == 200) {
                HttpEntity httpEntity = httpResponse.getEntity();
                response = EntityUtils.toString(httpEntity);
                System.out.println("Response: " + response);
            } else {
                System.out.println("GET request failed");
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                httpClient.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

以上兩種方法都可以用于發(fā)送HTTP請求。根據(jù)你的需求和項(xiàng)目結(jié)構(gòu),可以選擇適合你的方法。

0