繁体   English   中英

使用Jackson或Gson解析Json

[英]Json parsing using jackson or Gson

如何使用jacksonGson将相同的json对象键解析为2个不同的模型类?

这是输入json

 {
      "last_sync_dt": "1486711867749",
      "meetings_info": [
        {
          "date": "2017-01-15",
          "meeting_id": "1",
          "subject": "Product Review with AUDI",
          "customer_id": "32",
          "customer_name": "David"
        }
      ]
    }  

这些是模特班

@JsonIgnoreProperties(ignoreUnknown = true)
Class MeetingInfo{
    @JsonProperty("date")
    private String date;
    @JsonProperty("meeting_id")
    private String meetingId;
    @JsonProperty("subject")
    private String subject;

    CustomerInfo customerinfo; 


//Other fields and getter setter


}

class CustomerInfo{
    @JsonProperty("customer_id")
    private String id;
   @JsonProperty("customer_name")
    private String name;

//Other fields and getter setter
}

这是使用gson的代码示例。

@JsonIgnoreProperties(ignoreUnknown = true)
Class RootClass {
    @JsonProperty("last_sync_dt")
    private String date;
    @JsonProperty("meetings_info")
    ArrayList<MeetingInfo> meetingInfo;
    // as you are having json array of meeting info in root 


//Other fields and getter setter


}

并在您的MeetingInfo类中

class MeetingInfo{
    @JsonProperty("date")
    private String date;
   @JsonProperty("meeting_id")
    private String meetingId;
   @JsonProperty("subject")
    private String subject;
   @JsonProperty("customer_name")
    private String cName;
   @JsonProperty("customer_id")
    private String cId;

//Other fields and getter setter
} 

最后是在哪里得到json响应。

Type type = new TypeToken<RootClass>() {}.getType();
RootClass rootClass = ServerController.gson.fromJson(responseObject.toString(), type);

请为全局对象添加对象

Class ResultJson{
  String last_sync_dt;
  ArrayList<MeetingInfo> meetings_info;
}

和MeetingInfo将是

public class MeetingInfo {
    private String date;
    private String meeting_id;
    private String subject;
    private CustomerInfo customerInfo;

    public void setDate(String date) {
        this.date = date;
    }

    public void setMeeting_id(String meeting_id) {
        this.meeting_id = meeting_id;
    }

    public void setSubject(String subject) {
        this.subject = subject;
    }

    public void setCustomer(CustomerInfo customer) {
        customerInfo = customer;
    }
}

客户信息类

public class CustomerInfo {
    private String customer_id;
    private String customer_name;

    public void setCustomerId(String customer_id) {
        this.customer_id = customer_id;
    }

    public void setCustomerName(String customer_name) {
        this.customer_name = customer_name;
    }
}

会议解串器

public class MeetingInfoAutho implements JsonDeserializer<MeetingInfo>{

    @Override
    public MeetingInfo deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
        JsonObject jObject = jsonElement.getAsJsonObject();
        MeetingInfo info = new MeetingInfo();
        CustomerInfo customer = new CustomerInfo();
        customer.setCustomerId(jObject.get("customer_id").getAsString());
        customer.setCustomerName(jObject.get("customer_name").getAsString());
        info.setDate(jObject.get("date").getAsString());
        info.setMeeting_id(jObject.get("meeting_id").getAsString());
        info.setSubject(jObject.get("subject").getAsString());
        info.setCustomer(customer);
        Log.e("info", jObject.toString());
        return info;
    }
}

最后调用json字符串到对象

GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.registerTypeAdapter(MeetingInfo.class, new MeetingInfoAutho());
Gson gson = gsonBuilder.create();
ResultJson resultObject = gson.fromJson(jsonStr, ResultJson.class);

您应该创建实现JsonDeserializer的MeetingInfoAutho。 有关更多信息,请找到有关JsonDeserializer GSON的一些示例。 这将给出确切的结果。

您可以使用此链接使用jackson或Gson解析JSON。 它将自动创建您的类。只需将您的JSON粘贴到那里。

链接: http//www.jsonschema2pojo.org/

在这里,这是最好的方法,您可以从以下URL生成Gson或Jackson的模型类,然后在使用Gson或Jackson库直接在模型类中设置Json数据之后。

生成模型的链接: http : //www.jsonschema2pojo.org/

在这里,我正在为您的响应生成模型类。

import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Example {

@SerializedName("last_sync_dt")
@Expose
private String lastSyncDt;
@SerializedName("meetings_info")
@Expose
private List<MeetingsInfo> meetingsInfo = null;

public String getLastSyncDt() {
return lastSyncDt;
}

public void setLastSyncDt(String lastSyncDt) {
this.lastSyncDt = lastSyncDt;
}

public List<MeetingsInfo> getMeetingsInfo() {
return meetingsInfo;
}

public void setMeetingsInfo(List<MeetingsInfo> meetingsInfo) {
this.meetingsInfo = meetingsInfo;
}

}
/*-----------------------------------com.example.MeetingsInfo.java-----------------------------------*/

package com.example;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class MeetingsInfo {

@SerializedName("date")
@Expose
private String date;
@SerializedName("meeting_id")
@Expose
private String meetingId;
@SerializedName("subject")
@Expose
private String subject;
@SerializedName("customer_id")
@Expose
private String customerId;
@SerializedName("customer_name")
@Expose
private String customerName;

public String getDate() {
return date;
}

public void setDate(String date) {
this.date = date;
}

public String getMeetingId() {
return meetingId;
}

public void setMeetingId(String meetingId) {
this.meetingId = meetingId;
}

public String getSubject() {
return subject;
}

public void setSubject(String subject) {
this.subject = subject;
}

public String getCustomerId() {
return customerId;
}

public void setCustomerId(String customerId) {
this.customerId = customerId;
}

public String getCustomerName() {
return customerName;
}

public void setCustomerName(String customerName) {
this.customerName = customerName;
}

}

现在,您可以直接在模型类(如Bellow)中设置数据

Example example = new Gson().fromJson(jsonRespons, new TypeToken<Example>() {
                    }.getType());

暂无
暂无

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

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