gpt4 book ai didi

Java - 使用 apache Fluent api 发布时出现 NoHttpResponseException

转载 作者:行者123 更新时间:2023-11-30 08:09:31 26 4
gpt4 key购买 nike

我使用 Java 和 Apache Fluent api 不断将数据发布到服务器。

Content content = Request.Post(URL)
.bodyForm(param)
.execute()
.returnContent();

上面的工作完美,但经过一些随机执行时间后,我收到 org.apache.http.NoHttpResponseException: 未能响应。在收到此异常后,我如何处理此问题以再次发布相同的参数。

编辑

好吧,我必须处理响应,类似这样的事情,但仍然不知道如何做到这一点。

Content content = Request.Post(URL)
.bodyForm(param)
.execute().handleResponse(new ResponseHandler<Content>() {

public Content handleResponse(HttpResponse arg0)
throws ClientProtocolException, IOException {
// TODO Auto-generated method stub
return null;
}
});

最佳答案

我没有使用流畅的 API,而是使用了以下方法并克服了我自己的问题:- get NoHttpResponseException for load testing Apache HttpClient Interim Error: NoHttpResponseException

关于Java - 使用 apache Fluent api 发布时出现 NoHttpResponseException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30597061/

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