我在android studio上开发了一个android应用程序。我使用Java。
我想从公开的食物事实中使用此api:https://fr.openfoodfacts.org/api/v0/produit/3029330003533.json
但是我只知道如何只在一个pojo类中使用Retrofit和Rxjava。
我使用此网站创建pojo类:http://pojo.sodhanalibrary.com 但是他创建了大量的pojo课,我不知道它是否正确以及我如何使用它?
接下来,您可以看到我有很多POJO类。
答案 0 :(得分:2)
使用JsonSchema为您正在使用的解析库(GSON / Jackson等)和Api调用用户RxJava生成pojo 像这样
创建Pojo
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.foodit.data.remote.wrapper.SignupDetailsWrapper;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"code",
"msg",
"details"
})
public class LoginResponse {
@JsonProperty("code")
private int code;
@JsonProperty("msg")
private String msg;
@JsonProperty("details")
private List<LoginDetailsWrapper> details = new ArrayList<LoginDetailsWrapper>();
@JsonProperty("code")
public int getCode() {
return code;
}
@JsonProperty("code")
public void setCode(int code) {
this.code = code;
}
@JsonProperty("msg")
public String getMsg() {
return msg;
}
@JsonProperty("msg")
public void setMsg(String msg) {
this.msg = msg;
}
@JsonProperty("details")
public List<LoginDetailsWrapper> getDetails() {
return details;
}
@JsonProperty("details")
public void setDetails(List<LoginDetailsWrapper> details) {
this.details = details;
}
}
像这样在ApiInterface中定义Api
@FormUrlEncoded
@POST("login")
Observable<LoginResponse> userLogin(@Field("device_id") String device_id, @Field("device_type") String device_type,
@Field("username") String username, @Field("password") String password
);
并像这样调用api
@Override
public void userLogin(String device_id, String device_type, String username, String password) {
getCompositeDisposable().add(loginActivtiyInteractor.userLogin(device_id, device_type, username, password)
.subscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread())
.subscribe(loginResponse -> {
if (loginResponse != null) {
if (loginResponse.getCode() == 1) {
getMvpView().hideLoading();
getMvpView().updateView(loginResponse);
} else {
getMvpView().hideLoading();
getMvpView().onError(loginResponse.getMsg());
}
}
}, throwable -> {
throwable.printStackTrace();
getMvpView().onError(throwable.getLocalizedMessage());
getMvpView().hideLoading();
}));
}
希望对您有帮助。