繁体   English   中英

如何从json数组获取Json对象并将其与模型类一起使用

[英]how to get Json objects from json array and use them with model class

我想使用gson库将接收到的json数据链接到我的pojo类。我使用了volley库来接收数据。当我从pojo类中调用getter方法时,我应该怎么做才能获取接收到的json数据。

我的Json数据是这种格式。

{
 "vichList":[ {
            id=1,
            username="abc....},
            {....},
            ]
}

我想将此json数据放入我的pojo类中。

Vich.java

public class GetfeedResponse {
private List<Vich> vichList;

public List<Vich> getVichList() {
    return vichList;
}

public void setVichList(List<Vich> vichList) {
    this.vichList = vichList;
}
}

Vich.java

public class Vich {
private int id;
private String username;
private String full_name;
private String createdAt;
private int vich_id;
private String vich_content;
private String city;
private int like_count;

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

public String getUsername() {
    return username;
}

public void setUsername(String username) {
    this.username = username;
}

public String getFull_name() {
    return full_name;
}

public void setFull_name(String full_name) {
    this.full_name = full_name;
}

public String getCreatedAt() {
    return createdAt;
}

public void setCreatedAt(String createdAt) {
    this.createdAt = createdAt;
}

public int getVich_id() {
    return vich_id;
}

public void setVich_id(int vich_id) {
    this.vich_id = vich_id;
}

public String getVich_content() {
    return vich_content;
}

public void setVich_content(String vich_content) {
    this.vich_content = vich_content;
}

public String getCity() {
    return city;
}

public void setCity(String city) {
    this.city = city;
}

public int getLike_count() {
    return like_count;
}

public void setLike_count(int like_count) {
    this.like_count = like_count;
}
}

在这里,我得到了使用凌空库的json响应。

httpUtil.getrequest(url,this,new VolleyCallback(){

        @Override
        public void onSuccess(String result){

            GetfeedResponse getfeedResponse = new GetfeedResponse();
           // for(Vich vich : getfeedResponse.getVichList()){
           // }

            Log.d("Response Result:",result);
        }

我如何从json数组中获取对象并在pojo类的帮助下使用它们?

使用Gson

在gradle中添加以下依赖项:

implementation 'com.google.code.gson:gson:2.8.5'

在你的onSuccess()

GetfeedResponse getfeedResponse=new Gson().fromJson(result, GetfeedResponse.class);

如果您想使用Volley和POJO,最好使用自定义GSON请求。 检查此链接: 排球的定制GSON请求

GSON:

GetfeedResponse parsed = new Gson().fromJson(response, GetfeedResponse.class);

杰克逊:

GetfeedResponse parsed = new ObjectMapper().readValue(response, GetfeedResponse.class);

此外,如果您只想转换Vich项目列表(并且相应地剥离了JSON),则可以执行以下操作:

[ {
id=1,
username="abc....},
{....},
]
List<Vich> viches = Arrays.asList(new Gson().fromJson(vichItemsJson, Vich[].class));

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM