1.请求参数的数据结构:
{“userId”:uid,”searchCondition”:”{“stationStatus”:1,”workPeriodId”:2,”districtId”:20}”,”searchIndex”:0,”maxCount”:20,”sessionId”:”id”}
2.结果数据结构:
{“code”:200,”resultCount”:5,”stationList”:[{json obj<stationInfo> },{json obj<stationInfo>}…]}
就是一个json对象再包含json对象或者json数组
{json obj<stationInfo> } 这是什么意思
参考一下这个:
http://james.newtonking.com/json/help/index.html?topic=html/Samples.htm
googel 提供的gson
没用过
{json obj<stationInfo> },
这是sjon对象吗。
是不是对象里嵌套对象呀,好像支持json序列化和反序列化的都支持吧
试试这个 Newtonsoft.Json
基本都支持,Json.Net(Newtonsoft.Json),FastJson,LitJson等等...