使用 HttpClient 在“适配器已分离”和“无包装连接”之间切换

2023-12-10

所以正如我所说,当我尝试运行时,我在这两个错误之间来回跳动HttpClient.execute(HttpPost)。得到IllegalStateException

public class NetMethods {
    private static HttpClient client = new DefaultHttpClient();

    public static void getStuff() {

    ArrayList<Alarm> alarms = new ArrayList<Alarm>();

    HttpPost post = HttpPostFactory.getHttpPost("GetStuff");

    StringBuilder builder = new StringBuilder();

    HttpResponse response = client.execute(post); // Exception thrown here

            ...

另外,我的 MttpPostFactory 只有这个

import org.apache.http.client.methods.HttpPost;

public class HttpPostFactory {

private static final String url = "http://example.com/ExampleFolder/";

public static HttpPost getHttpPost(String s) {
    return new HttpPost(url + s);
}
}

这可能是由于未关闭InputStream's你从HttpClient,特别是如果来自不同的线程......要么不读取整个内容,要么从两个不同的线程调用相同的 HttpClient 实例。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

使用 HttpClient 在“适配器已分离”和“无包装连接”之间切换 的相关文章

随机推荐