gpt4 book ai didi

java - 同时有多个http请求

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:54:31 26 4
gpt4 key购买 nike

有没有更好的方法同时发送数千个http GET请求?我的代码一个接一个地发送请求。看过其他答案,但无法弄清楚。谢谢。

for (int j=0; j<4; j++) {
DefaultHttpClient httpclient = new DefaultHttpClient();
CookieStore cookieStore = httpclient.getCookieStore();
HttpGet httpget = new HttpGet("");
try {
HttpResponse response = httpclient.execute(httpget);
List<Cookie> cookies = cookieStore.getCookies();
} catch (Exception e) {}
httpclient.getConnectionManager().shutdown();
}

最佳答案

你应该创建多个线程,每个线程都应该执行一个 HTTP 请求

下面的链接可能有帮助

http://hc.apache.org/httpclient-3.x/threading.html

关于java - 同时有多个http请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13822939/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com