0

在我的应用程序中,我使用了 Json。这是我在应用程序中的 JSON 响应

This is my Response:
[
    {
    "response": "Success",
    "errorMsg": "",
    "userId": "1",
    "userCompany": "xxxyy",
    "userName": "sham",
    "userAddress": "chennai",
    "userCity": "xxxxx",
    "userMobile": "xxxx",
    "userEmail": "xxx"
},
{
    "response": "Success",
    "errorMsg": "",
    "productImage": "http://www.iii.jpg",
    "productDescription": "Loaded box on pallets - Bart's package",
    "productCost": "10",
    "productBoxWeight": "10.0"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "1.4",
    "transportCountry": "Colombia",
    "transportPort": "Havana"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "0.7",
    "transportCountry": "Brazil",
    "transportPort": "Santos"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "0.9",
    "transportCountry": "South Africa",
    "transportPort": "Durban"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "0.9",
    "transportCountry": "Chili",
    "transportPort": "San Antonio"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "2.7",
    "transportCountry": "Australia",
    "transportPort": "Maersk"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "1",
    "transportCountry": "Marocco",
    "transportPort": "Casablanca"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "1",
    "transportCountry": "Kuwait",
    "transportPort": "Shuwaikh"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "1",
    "transportCountry": "Jordan",
    "transportPort": "Aqaba"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "0.8",
    "transportCountry": "Saoudi Arabia",
    "transportPort": "Jeddah"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "0.8",
    "transportCountry": "Malta",
    "transportPort": "Maraxklokk"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "0.9",
    "transportCountry": "Mexico",
    "transportPort": "Veracruz"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "1.2",
    "transportCountry": "Thailand",
    "transportPort": "Bangkok"
},
{
    "response": "Success",
    "errorMsg": "",
    "transportCost": "1",
    "transportCountry": "Thailand",
    "transportPort": "havana"
}
]

我如何检索一个数组中的前两个集合和另一个数组中的其他集合...我是新手,请帮我修复它...

4

2 回答 2

0

为了解析您的 JSON 并获取 Objective-C 对象,请使用以下代码(data您刚刚获得的 JSON 在哪里):

NSError *e = nil;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:data 
                                          options:NSJSONReadingMutableContainers 
                                          error:&e];

之后,您将拥有一个NSArray包含多个字典 ( NSDictionary)。要获得第一个,请执行以下操作:

if (!jsonArray) {
  NSLog(@"Error parsing JSON: %@", e);
} else {
    // get the first dictionary
    NSDictionary *dict = [jsonArray objectAtIndex:0];    
}
于 2013-06-11T12:16:40.697 回答
0

JSON 没有将键或值(包括 JSON 数组中的值)定义为任何顺序。因此,您必须在解析后自己对项目进行排序。

为了解析 JSON,您可以使用任何可用的 JSON 解析器(我更喜欢 SBJson)。通常解析器提供将 JSON 转换为NSDictionary的可能性,因此您可以轻松处理其内容。

于 2013-06-11T12:08:29.427 回答