Android使用gson创建嵌套的JSON数组

时间:2015-08-06 18:20:26

标签: android gson

我想在Android中创建字符串JSON格式,但我不能这样做。

JSON格式:

{
    "Main":{
    "Timestamp":"20/7/15",
    "AccountDetails": [
        {
            "Account": "45852",
            "Address1": "Ldfldfldf",
            "Town": "dfdfdfdf",
            "County": "dfdfdf",
            "Code": "dfdfdfdf",
            "Data": [
                {
                    "Local": "Kohjhj90",
                    "Other": "ghghgtgg",

                },

                {
                    "Local": "Ko8545",
                    "Other": "g8599tgg",
                }
            ]
        },

        {
           "Account": "4782",
            "Address1": "Ldfldfldf",
            "Town": "dfdfdfdf",
            "County": "dfdfdf",
            "Code": "dfdfdfdf",
            "Data": [
               {
                    "Local": "Ko8555545",
                    "Other": "yu599tgg",
                }

            ]
        }
    ]
}
}

以上是我的JSON格式我希望在Android中使用gson创建相同的格式。

0 个答案:

没有答案