I am trying to connect to rest service via retrofit in android application. I am getting responses. But when there is some error response from the service, conversion exception occurs and now I want to do some actions based on the response body. But I am getting response body as NULL. But retrofit log has a error message. Why is this happening.
我试图通过Android应用程序中的改造连接到休息服务。我收到了回复。但是当服务有一些错误响应时,会发生转换异常,现在我想根据响应主体做一些操作。但我得到的反应体为NULL。但是改造日志有一条错误消息。为什么会这样呢?
D/Reftofit log(24856): OkHttp-Received-Millis: 1397527055676
D/Reftofit log(24856): OkHttp-Response-Source: NETWORK 200
D/Reftofit log(24856): OkHttp-Sent-Millis: 1397527055492
D/Reftofit log(24856): Server: Apache/2.2.22 (Ubuntu)
D/Reftofit log(24856): X-Powered-By: PHP/5.3.10-1ubuntu3.10
D/Reftofit log(24856): {"result":"Invalid Token ID"}
Code:
码:
public void failure(RetrofitError retrofitError) {
String response = null;
TokenError tokenError = (TokenError) retrofitError.getBodyAs(TokenError.class);
response = tokenError.getErrorDetails();
Log.e(TAG, response);
if (response != null && response.contains("Invalid Token ID")) {
GroupDataProvider.getInstance().onFailure();
}
}
Here I am getting tokenError
as null
. I don't know why? Do I need to set something with rest adapter so that the response will be passed to retrofit error object.
这里我将tokenError作为null。我不知道为什么?我是否需要使用rest适配器设置某些内容,以便将响应传递给改进的错误对象。
4 个解决方案
#1
71
Try this code:
试试这段代码:
@Override
public void failure(RetrofitError error) {
String json = new String(((TypedByteArray)error.getResponse().getBody()).getBytes());
Log.v("failure", json.toString());
}
with Retrofit 2.0
使用Retrofit 2.0
@Override
public void onFailure(Call<Example> call, Throwable t) {
String message = t.getMessage();
Log.d("failure", message);
}
#2
5
if error in String format:
如果字符串格式错误:
public Sring getErrorBodyAsString(RetrofitError error) {
return (String) error.getBodyAs(String.class)
}
if you need custom object:
如果你需要自定义对象:
class ErrorResponse {
@SerializedName("error")
int errorCode;
@SerializedName("msg")
String msg;
}
public T getErrorBody(RetrofitError error, Class<T> clazz) {
return (T) error.getBodyAs(clazz);
}
#3
3
Your server should return 4xx HTTP error code to get this working.
您的服务器应返回4xx HTTP错误代码以使其正常工作。
When your server returns HTTP 200 this mean successful response and it will be processed with onSuccess
branch. Likely your object which you pass to Callback<Object>
should be ready to handle both success and error result.
当您的服务器返回HTTP 200时,这意味着成功的响应,它将使用onSuccess分支进行处理。您传递给Callback
To make sure this is the case you can check if RetrofitError
is actually a JsonParseException
by adding next snippet:
要确保这种情况,您可以通过添加下一个片段来检查RetrofitError是否实际上是JsonParseException:
public void failure(RetrofitError error) {
Log.v(TAG, error.getMessage());
};
#4
0
you need use getErrorStream() for this.
你需要使用getErrorStream()。
If the HTTP response indicates that an error occurred, getInputStream() will throw an IOException. Use getErrorStream() to read the error response. The headers can be read in the normal way using getHeaderFields().
如果HTTP响应指示发生错误,则getInputStream()将抛出IOException。使用getErrorStream()来读取错误响应。可以使用getHeaderFields()以正常方式读取标头。
Ref: github issue
参考:github问题
#1
71
Try this code:
试试这段代码:
@Override
public void failure(RetrofitError error) {
String json = new String(((TypedByteArray)error.getResponse().getBody()).getBytes());
Log.v("failure", json.toString());
}
with Retrofit 2.0
使用Retrofit 2.0
@Override
public void onFailure(Call<Example> call, Throwable t) {
String message = t.getMessage();
Log.d("failure", message);
}
#2
5
if error in String format:
如果字符串格式错误:
public Sring getErrorBodyAsString(RetrofitError error) {
return (String) error.getBodyAs(String.class)
}
if you need custom object:
如果你需要自定义对象:
class ErrorResponse {
@SerializedName("error")
int errorCode;
@SerializedName("msg")
String msg;
}
public T getErrorBody(RetrofitError error, Class<T> clazz) {
return (T) error.getBodyAs(clazz);
}
#3
3
Your server should return 4xx HTTP error code to get this working.
您的服务器应返回4xx HTTP错误代码以使其正常工作。
When your server returns HTTP 200 this mean successful response and it will be processed with onSuccess
branch. Likely your object which you pass to Callback<Object>
should be ready to handle both success and error result.
当您的服务器返回HTTP 200时,这意味着成功的响应,它将使用onSuccess分支进行处理。您传递给Callback
To make sure this is the case you can check if RetrofitError
is actually a JsonParseException
by adding next snippet:
要确保这种情况,您可以通过添加下一个片段来检查RetrofitError是否实际上是JsonParseException:
public void failure(RetrofitError error) {
Log.v(TAG, error.getMessage());
};
#4
0
you need use getErrorStream() for this.
你需要使用getErrorStream()。
If the HTTP response indicates that an error occurred, getInputStream() will throw an IOException. Use getErrorStream() to read the error response. The headers can be read in the normal way using getHeaderFields().
如果HTTP响应指示发生错误,则getInputStream()将抛出IOException。使用getErrorStream()来读取错误响应。可以使用getHeaderFields()以正常方式读取标头。
Ref: github issue
参考:github问题