我在我的应用程序中使用 OkHttp 库(http://square.github.io/okhttp/),在一个简单的 GET 请求中我得到了这个异常:
Caused by: java.io.EOFException: \n not found: size=0 content=...
at okio.RealBufferedSource.readUtf8LineStrict(RealBufferedSource.java:201)
at com.squareup.okhttp.internal.http.HttpConnection.readResponse(HttpConnection.java:191)
...
unexpected end of stream on Connection{th.it-bedna.cz:80, proxy=DIRECT@ hostAddress=85.118.128.42 cipherSuite=none protocol=http/1.1} (recycle count=0)
对同一地址的其他 Get 请求工作正常。如果我向 Chrome 键入此请求,它也可以正常工作。你知道问题出在哪里吗?
感谢您的任何建议。
编辑:GET 的代码
public Call doGetRequest(String url, Callback callback) {
com.squareup.okhttp.Request request = new com.squareup.okhttp.Request.Builder()
.url(url)
.build();
Call call = client.newCall(request);
call.enqueue(callback);
return call;
}
使用:
void getData()
{
String url = "http://th.it-bedna.cz/api/v2/event/1/user?i=8";
Singleton.getInstance().doGetRequest(url, new Callback() {
@Override
public void onFailure(Request request, IOException e) {
Log.i("CDT", "onFailure: " + e);
}
@Override
public void onResponse(Response response) throws IOException {
}
});
}
如果您的服务器是
th.it-bedna.cz
,如您的logcat信息所示,您可以尝试以下代码:
OkHttpClient client = new OkHttpClient();
// GET request
Request request = new Request.Builder()
.url("http://th.it-bedna.cz")
.build();
client.newCall(request).enqueue(new Callback() {
@Override
public void onFailure(Request request, IOException e) {
Log.e(LOG_TAG, e.toString());
}
@Override
public void onResponse(Response response) throws IOException {
Log.w(LOG_TAG, response.body().string());
Log.i(LOG_TAG, response.toString());
}
});
我对 OkHttpClient 和 HttpURLConnection 也有同样的问题。 我的 Android 模拟器配置为使用代理,但我的代理不接受连接。
无论您是否使用代理,如果目标主机拒绝连接,您都会遇到该异常。