Okhttp:onResponse后异步请求不会立即停止

时间:2015-07-02 11:44:18

标签: java okhttp

首先抱歉我的英语不是我的母语。

我使用okhttp进行一些简单的异步调用,但是我的程序在调用onResponse后不会立即停止。它需要几秒钟然后停止。我在Android 5上没有这个问题,但在我的桌面上。我对其他网址也有同样的问题。也许有些事我做错了。请求在另一个线程中执行。我的网络是代理服务器。

我使用:okhttp-2.4.0okio-1.4.0以及java8

如果此问题已得到解答,请重定向我。

这是我的代码:`

private final OkHttpClient client = new OkHttpClient();

public void run() throws Exception {

    Settings.setProxy();
    Request request = new Request.Builder()
            .url("http://openlibrary.org/search.json?q=la+famille")
            .build();

    client.newCall(request).enqueue(new Callback() {
        @Override
        public void onFailure(Request request, IOException e) {
            e.printStackTrace();
            System.out.println("error");
        }

        @Override
        public void onResponse(Response response) throws IOException {
            if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);

            System.out.println(response.body().string());
            System.out.println("coucou");
        }
    });
}

`

2 个答案:

答案 0 :(得分:2)

正如您在执行异步调用时从问题中发现的那样,创建了ExecutorService并且池正在使VM保持活动状态。

要关闭池,只需获取调度程序并关闭它:

client.getDispatcher().getExecutorService().shutdown();

答案 1 :(得分:0)

我不知道如何,但这条线对我有用 client.connectionPool().evictAll();