自学内容网 自学内容网

java springboot 集成 okHttp 发送get、post请求

在 Java Spring Boot 项目中可以很方便地集成OkHttp来发送GETPOST请求。以下是具体步骤:

一、添加依赖

在项目的pom.xml文件中添加OkHttp的依赖:

<dependency>
    <groupId>com.squareup.okhttp3</groupId>
    <artifactId>okhttp</artifactId>
    <version>4.11.0</version>
</dependency>

二、发送 GET 请求

  1. 创建一个工具类来封装OkHttp的请求方法:
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;

import java.io.IOException;

public class OkHttpUtil {

    public static String sendGetRequest(String url) throws IOException {
        OkHttpClient client = new OkHttpClient();
        Request request = new Request.Builder()
               .url(url)
               .build();
        try (Response response = client.newCall(request).execute()) {
            if (!response.isSuccessful()) {
                throw new IOException("Unexpected code " + response);
            }
            return response.body().string();
        }
    }
}
  1. 在需要发送GET请求的地方调用这个方法:
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            String response = OkHttpUtil.sendGetRequest("https://api.example.com/data");
            System.out.println(response);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

三、发送 POST 请求

  1. 在工具类中添加发送POST请求的方法:
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

import java.io.IOException;

public class OkHttpUtil {
    //... 前面的 sendGetRequest 方法

    public static String sendPostRequest(String url, String jsonData) throws IOException {
        OkHttpClient client = new OkHttpClient();
        MediaType mediaType = MediaType.parse("application/json; charset=utf-8");
        RequestBody body = RequestBody.create(jsonData, mediaType);
        Request request = new Request.Builder()
               .url(url)
               .post(body)
               .build();
        try (Response response = client.newCall(request).execute()) {
            if (!response.isSuccessful()) {
                throw new IOException("Unexpected code " + response);
            }
            return response.body().string();
        }
    }
}
  1. 在需要发送POST请求的地方调用这个方法:
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            String jsonData = "{\"key\":\"value\"}";
            String response = OkHttpUtil.sendPostRequest("https://api.example.com/post-endpoint", jsonData);
            System.out.println(response);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在上述代码中,sendGetRequest方法用于发送GET请求,sendPostRequest方法用于发送POST请求并传入要发送的 JSON 数据。请确保在实际使用中处理可能出现的异常情况,并根据实际需求调整请求的 URL 和数据。


原文地址:https://blog.csdn.net/chu396815830/article/details/142344278

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!