如何将Json响应转换为Java中的对象列表

时间:2018-11-23 13:05:39

标签: java json casting response

我使用getCurrentResponse()。getBody()获取JSON如何将json转换为订阅列表:

List<Subscriptions>

杰森,我得到了:

{
    "user": [
        {
            "channel_type": "tel",
            "contact_info": "+37062333122",
            "enabled": true
        },
        {
            "channel_type": "mail",
            "contact_info": mail@gmail.com,
            "enabled": true
        }
    ]
}

我的订阅课程以及我不包括的getter和setter方法,

public class Subscription {
    private String contactInfo;
    private String channelType;
    private Boolean enabled;
}

0 个答案:

没有答案