我正在尝试使用okhttp打开连接。
,
urlConnection = client.open(url);
不能与新的ok-http.jar文件一起工作。
它与1.5.x of okhttp version
一起工作
有什么建议吗?
谢谢
来自文档中的代码
public static void main(String[] args) throws IOException {
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("http://kenumir.pl/")
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
<<p>方法strong> 是关键;-) it does not work是什么意思?它在编译时或运行时失败吗?它显示了什么样的错误?从OkHttip 2.x开始。x,有一个改变的方式打开HttpUrlConnections,你需要包括一个新的模块,这应该工作:
// OkHttp 1.x:
HttpURLConnection connection = client.open(url);
// OkHttp 2.x:
HttpURLConnection connection = new OkUrlFactory(client).open(url);