这个对应的对象层次结构是什么?

时间:2012-01-25 13:30:25

标签: android json

我在做Json解析。截至目前,我正在从一个文件中读取它,然后在其上使用JSON解析器。然后我遇到了Google Gson。在哪里,我要创建一个类包装器。关于我在那里展示的JSON数据的类包装器有点困惑。 有什么帮助吗?

{"contact":
{
  "id":""
  "pod":""
  "user":"",
  "contactType" : [

   {"user": "",
    "pod" : ""
    }
  ]
  "conversation":[

    {
    "id":""
    "subject":""
    "crumb":""
    "message":  [
            {
            "id":""
            "body":"    "
            "time":""
        }
    ]
    "time":""
    }
    ]
}

}

1 个答案:

答案 0 :(得分:1)

Contact对象具有以下变量&对象;

id; // variable
pod; // variable
user; // variable
contactType() // object with following fields
    user; // variable
    pod;  // variable
conversation() // object with following fields
    id; // variable 
    subject; // variable
    crumb; // variable
    time;  // variable
    message() // object with following fields
        id; // variable
        body; // variable
        time; // variable

我认为这是包装类

的正确对象层次结构