当使用androids URL和HttpUrlConnection向后端点发送GET请求时,有时会发生(10个中的1个)请求因以下原因而失败: java.net.ProtocolException:意外的状态行:1.1 200 OK
如上所述这只发生了一次,我尝试了3个不同的后端(其中一个是自托管的),但它仍然会发生。
System.setProperty("http.keepAlive", "false");
URL url = new URL(callUrl);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setUseCaches(false);
con.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
con.setConnectTimeout(5000);
con.setReadTimeout(4000);
con.setRequestMethod(requestMethod);
con.setRequestProperty("User-Agent", USER_AGENT);
con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
con.setRequestProperty("Accept-Charset", "UTF-8");
con.setRequestProperty("charset", "UTF-8");
con.setRequestProperty("Connection", "close");
也许有人知道如何解决它?
答案 0 :(得分:1)
首先,这是API参考链接: http://square.github.io/retrofit/
所以,请转到: 文件>项目结构,打开后, in modules - app ,转到标签依赖关系。
单击 + 符号并添加库
搜索并添加此库:com.squareup.retrofit2:retrofit:2.30
,我强烈建议您也使用Jackson,如果需要,请将此库添加到:com.squareup.retrofit2:converter-jackson:2.3.0
在完成所有依赖和构建之后,让我们转到代码。
我使用以下代码创建了 RetrofitInitialization 类:
public class RetrofitInicializador {
public RetrofitInitialization() {
String url = "localhost:8080/webservice/";
retrofit = new Retrofit.Builder().baseUrl(url)
.addConverterFactory(JacksonConverterFactory.create()).build();
}
}
我们也需要创建一个服务,因此,我创建了一个名为的服务类: 的 ObjectService 强>
public interface ObjectService {
@POST("post/example")
Call<Object > postexemple(@Body Object object);
@GET("get/example/{id}")
Call<Object> getexemple(@Path("id") Integer id);
}
对象是您要接收或发送的模型。 在此之后,在构造函数之后将您的服务添加到RetrofitInitialization中。
类似于:
public ObjectService getObjectService() {
return retrofit.create(ObjectService.class);
}
在您的活动中或您想要获取此信息的任何地方,请执行以下操作:
private void loadFromWS(Object object) {
Call<Object> call = new RetrofitInicializador().getObjectService().postexemple(object);
call.enqueue(new Callback<Object>() {
@Override
public void onResponse(Call<Object> call, Response<Object> response) {
Object response = response.body();
// DO your stuffs
}
@Override
public void onFailure(Call<Object> call, Throwable t) {
Toast.makeText(AgendaActivity.this, "Connection error", Toast.LENGTH_SHORT).show();
}
});
}
编辑:忘记告诉我,我在WS REST服务器上使用它(更具体地说:JAX-RS和Jersey WS)