如果我们在API响应中有JSONobject和JSONarray,如何生成PoJo类?

时间:2016-12-15 07:44:35

标签: android json pojo

{
    "CustId": "10705",
    "UserName": "3721",
    "Password": null,
    "AdminPassword": null,
    "CustName": "PB 65 V 3721",
    "CustType": "30",
    "CustKey": "980964ee-2abd-4352-9817-206d7ece8d04",
    "IsSubUser": true,
    "Announcement": "",
    "showIcons": "1111111111",
    "ResponseStatus": {
        "Status": true,
        "ErrorCode": null,
        "StackTrace": null,
        "Message": null,
        "Error": null
    }
}

2 个答案:

答案 0 :(得分:0)

使用json来pojo在线工具。有一个我主要使用的。这是link

只需在那里发布您的回复,它就会为您转换pojos。然后你可以使用gson将json映射到你的pojo。

我希望这会以某种方式帮助你。

答案 1 :(得分:0)

访问here

  1. 将JSON粘贴到左侧。
  2. 然后选择输入JSON
  3. 注释风格:Gson
  4. 的getter / setter 点击预览/保存Zip。
  5. 完成后,您必须编辑一下以维护嵌套类。