用java模拟post接口请求并发请求71次,把最后一次的响应内容返回

您可以使用 Java 中的 HttpClient 来模拟 POST 请求,并通过多线程来实现并发请求。下面是一个简单的示例代码:

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.HttpClients;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class ConcurrentPostRequests {

    public static void main(String[] args) {
        String url = "your_post_url"; // 替换为实际的POST接口URL
        String requestBody = "your_request_body"; // 替换为实际的请求体

        ExecutorService executorService = Executors.newFixedThreadPool(10); // 创建一个包含10个线程的线程池
        for (int i = 0; i < 71; i++) {
            executorService.submit(() -> {
                try {
                    HttpClient httpClient = HttpClients.createDefault();
                    HttpPost httpPost = new HttpPost(url);
                    httpPost.setHeader("Content-Type", "application/json");

                    StringEntity stringEntity = new StringEntity(requestBody);
                    httpPost.setEntity(stringEntity);

                    HttpResponse response = httpClient.execute(httpPost);

                    BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
                    StringBuilder responseBody = new StringBuilder();
                    String line;
                    while ((line = reader.readLine()) != null) {
                        responseBody.append(line);
                    }

                    System.out.println("Response: " + responseBody.toString());

                    // 如果是最后一次请求,关闭线程池
                    if (Thread.activeCount() == 2) {
                        executorService.shutdown();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            });
        }
    }
}

在这个示例中,我们创建了一个包含 10 个线程的线程池,然后提交了 71 个任务。每个任务都是一个 POST 请求,并发发送到目标 URL。最后一次请求的响应将被打印出来。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值