0

我想制作一个支持 Speedy (SPDY) 的简单的 android 客户端应用程序,但我真的被卡住了。

我正在制作的应用程序中使用 OkHttp 的 v2.0.0 JAR。我使用了以下代码(取自此处):

package com.squareup.okhttp.guide;

import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.Response;
import java.io.IOException;

public class GetExample {
  OkHttpClient client = new OkHttpClient();

  String run(String url) throws IOException {
    Request request = new Request.Builder()
        .url(url)
        .build();

    Response response = client.newCall(request).execute();
    return response.body().string();
  }

  public static void main(String[] args) throws IOException {
    GetExample example = new GetExample();
    String response = example.run("https://raw.github.com/square/okhttp/master/README.md");
    System.out.println(response);
  }
}

这里的nextCall()方法不会被执行。它反复说该方法在类nextCall()中不存在。OkHttpClient

4

0 回答 0