亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Java中GET請求如何實現

小樊
81
2024-08-12 22:03:38
欄目: 編程語言

在Java中實現GET請求可以使用HttpURLConnection類來實現。以下是一個簡單的示例:

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

public class HttpGetRequest {
    public static void main(String[] args) {
        try {
            URL url = new URL("http://example.com/api");
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET");

            BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            String inputLine;
            StringBuffer response = new StringBuffer();

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

            System.out.println(response.toString());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

在上面的示例中,我們創建了一個URL對象,然后通過調用openConnection()方法獲取HttpURLConnection對象。接著設置請求方法為GET,并發送請求。最后讀取響應內容并輸出到控制臺。

0
延安市| 临汾市| 大田县| 阜平县| 曲阜市| 当涂县| 修水县| 勃利县| 贡山| 榕江县| 华池县| 师宗县| 房山区| 南郑县| 江北区| 尉犁县| 沂水县| 绿春县| 淮北市| 阿坝县| 沿河| 泰州市| 株洲县| 华坪县| 安国市| 全椒县| 泉州市| 尤溪县| 锦州市| 双牌县| 屯昌县| 当涂县| 临猗县| 旅游| 紫阳县| 武鸣县| 甘肃省| 石阡县| 沙洋县| 万载县| 苏尼特左旗|