如何解决预期为BEGIN_ARRAY,但为STRING,如何将STRING转换为空的ARRAY?
我正在使用Android / Java做一个移动应用程序,并且正在使用Retrofit,RxJava和RxAndroid做一些HTTP请求。
在这些HTTP请求之一中,我已声明我的模型类期望这样的响应:
{
"code":201,"message":"Successfully","data":{
"devices":[
{
"state":"OK",// ... a few more properties
}
]
}
}
在某些情况下,相同的HTTP请求返回不同的正文,例如:
{
"code":201,"data":{
"devices":"" // <= is not an array anymore,it's just an empty string
}
}
由于响应正文存在差异,因此收到以下错误:
android应为BEGIN_ARRAY,但应为STRING
我在想一种将空字符串转换为空数组的方式,以避免发生错误,至少一个空数组与我的模型类匹配。
我的模特:
public class FullResponse {
@Serializedname("code")
private int code;
@Serializedname("message")
private String message;
@Serializedname("data")
private FullData data;
// Constructor
// Getters & Setters
}
public class FullData {
private List<Device> devices;
// Constructor
// Getters & Setters
}
public class Device {
private String state;
// ... a few more properties
// Constructor
// Getters & Setters
}
端点接口:
public interface ApiService {
@FormUrlEncoded
@POST("/status.PHP")
Observable<FullResponse> getStatus(@HeaderMap Map<String,String> headers,@FieldMap Map<String,String> request);
}
执行请求:
public class Request extends BaseRequest {
private Map<String,String> requestData;
private FullRequestSubscriber mStatusFullSubscriber;
// Constructor
@Override
public void request() {
HashMap<String,String> headers = new HashMap<>();
headers.put("Content-Type","application/x-www-form-urlencoded");
if (mStatusFullSubscriber != null) {
apiService
.getStatus(headers,requestData)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(mStatusFullSubscriber);
}
mStatusFullSubscriber.addToCompositeSubscription();
}
}
订户:
public class FullRequestSubscriber extends BaseSubscriber<FullResponse> {
private FullResponse response;
private Context mContext;
private OnSubscriptionInteractionListener subscriptionListener;
private OnRequestInteractionListener interactionListener;
// Constructor
@Override
public void onStart() {
this.response = null;
super.onStart();
}
@Override
public void onCompleted() {
super.onCompleted();
this.interactionListener.onRequestResponse(this.response);
}
// Error received here: android Expected BEGIN_ARRAY but was STRING
@Override
public void onError(Throwable e) {
//super.onError(e);
getSubscriberListener().removeSubscriber(this);
if (requireLoading()) {
((BaseActivity) getContext()).hideLoading();
}
this.interactionListener.onRequestError();
}
@Override
public void onNext(FullResponse o) {
this.response = o;
}
@Override
protected Context getContext() {
return this.mContext;
}
@Override
protected Class<?> getErrorResponseType() {
return null;
}
@Override
protected OnSubscriptionInteractionListener getSubscriberListener() {
return this.subscriptionListener;
}
public interface OnRequestInteractionListener {
void onRequestResponse(FullResponse data);
void onRequestError();
}
}
我的目标是将空字符串转换为空数组,以避免错误并维护匹配的模型。
解决方法
我以前遇到过此问题。您可以控制回应了吗?我发现最好的解决方案是让BE发送Null值而不是String。翻新很棒,但是有条件地要求将其强制转换为不同的对象类型。
..但是,如果您确实想这样做,则可以将private List<Device> devices;
放入private JSONObject devices;
中,并根据需要手动进行转换。参考Retrofit multiple response types
编辑尝试向其设备的FullData添加serializedName:
public class FullData {
@SerializedName("devices")
private List<JSONObject> devices;
// Constructor
// Getters & Setters
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。