在我的應用程序中,Web服務是在dot net中創建的,我正在使用這些服務並獲得響應。所有字段(如company,type,location)都是字符串,並且沒有任何問題..還有一個叫做Exhibit number的字段,實際上它是一個整數,但它們只是作爲字符串創建的。雖然我顯示的是它顯示的是零而不是那個數字..這是我的代碼...JSON解析的Web服務
//Storing into Array
[SurveyFilesArray addObject:[NSDictionary dictionaryWithObjectsAndKeys:[dic objectForKey:@"FileName"],@"FileName",[dic objectForKey:@"ExibhitNumber"],@"ExhibitNumber",[dic objectForKey:@"Description"],@"Description",[dic objectForKey:@"FileQuality"],@"FileQuality",nil]];
//Retrieving from Array..
NSLog(@"???%@???",[NSString stringWithFormat:@"%d",[[[SurveyFilesArray objectAtIndex:indexPath.row]objectForKey:@"ExibhitNumber"]intValue]]);
NSLog(@"%d",[[[SurveyFilesArray objectAtIndex:indexPath.row]objectForKey:@"ExibhitNumber"]intValue]);
那麼,什麼是JSON?顯示一些(**不是全部!**)。 – 2012-10-25 10:30:37
這是數據樣本....管理 Description> 1 ExibhitNumber> housekeeping3.jpg Low FileQuality> - –
Sandeep
這是XML,而不是JSON。 – 2012-10-25 10:55:43