Min*_*rid 36 android web-services retrofit2
我叫PATCH Web服务使用Retrofit2但onResponse不叫和onFailure处被称为尽管该服务的操作是成功的在服务器端完美
无论何时,我都试图使用fiddler来检查它的工作,我发现问题是序列化即将到来的服务响应,当使用fiddler时,我发现没有JSON响应的内容,所以Retrofit服务认为它失败了,因为没有内容,它无法序列化EMPTY内容并给我这个错误
java.io.EOFException: End of input at line 1 column 1
Run Code Online (Sandbox Code Playgroud)
提琴手原始回应
HTTP/1.1 200 OK
Server: nginx/1.9.4
Date: Wed, 02 Mar 2016 09:55:55 GMT
Content-Type: application/json
Content-Length: 0
Connection: close
Status: 200 OK
X-Content-Type-Options: nosniff
Run Code Online (Sandbox Code Playgroud)
Fiddler Json的回应是空的
java中的webservice
Call<Object> call = TimeCapp.services.accept_invited_alerts(HomeActivity.api_token, alert_id);
call.enqueue(new Callback<Object>()
{
@Override
public void onResponse (Call<Object> call, Response<Object> response)
{
if (response.isSuccess()) {
String x = response.body();
}
}
@Override
public void onFailure (Call<Object>call, Throwable t)
{
String x = t.getMessage();//java.io.EOFException: End of input at line 1 column 1
}
}
Run Code Online (Sandbox Code Playgroud)
我试图用String,JsonObject,emptyCalssBody 替换对象 ....但它失败了
webservice的接口
@PATCH("alerts/{alert_id}/accept")
Call<Object> accept_invited_alerts(@Header("X-Api-Token") String
api_token, @Path("alert_id") int alert_id);
Run Code Online (Sandbox Code Playgroud)
Bha*_*gav 74
如果正文为空,则返回void
@PATCH("alerts/{alert_id}/accept") Call<Void> accept_invited_alerts(@Header("X-Api-Token") String api_token, @Path("alert_id") int alert_id);
Run Code Online (Sandbox Code Playgroud)
对于使用Rx java进行改造,你可以使用这样的东西
@PATCH("alerts/{alert_id}/accept") Observable<Response<Void>> accept_invited_alerts(@Header("X-Api-Token") String api_token, @Path("alert_id") int alert_id);
Run Code Online (Sandbox Code Playgroud)
您可以创建NullOnEmptyConverterFactory.class:
import java.io.IOException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import okhttp3.ResponseBody;
import retrofit2.Converter;
import retrofit2.Retrofit;
/**
* Created by thientvse on 18/05/2018.
*/
public class NullOnEmptyConverterFactory extends Converter.Factory {
@Override
public Converter<ResponseBody, ?> responseBodyConverter(Type type, Annotation[] annotations, Retrofit retrofit) {
final Converter<ResponseBody, ?> delegate = retrofit.nextResponseBodyConverter(this, type, annotations);
return new Converter<ResponseBody, Object>() {
@Override
public Object convert(ResponseBody body) throws IOException {
if (body.contentLength() == 0) return null;
return delegate.convert(body);
}
};
}
}
Run Code Online (Sandbox Code Playgroud)
并添加到代码创建中。例如:
UploadImageNghiemThuApi uploadService = new Retrofit.Builder()
.baseUrl(Config.URL+"/")
.client(okHttpClient)
// -----add here-------
.addConverterFactory(new NullOnEmptyConverterFactory())
//---------------------
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(UploadImageNghiemThuApi.class);
Run Code Online (Sandbox Code Playgroud)
我希望它可以帮助您解决问题。谢谢!
小智 6
非常感谢。
应用程序接口
@FormUrlEncoded
@POST("/rebu/insertusuario.php")
Call<Void> insertLogin(
@Field("email") String email,
@Field("senha") String senha,
@Field("codCondutor") Long codCondutor
);
Run Code Online (Sandbox Code Playgroud)
班级:
Call call = service.insertLogin(login.getEmail(), login.getSenha(), login.getCodCondutor());
Run Code Online (Sandbox Code Playgroud)