gpt4 book ai didi

objective-c - SBJSon 不喜欢 Json 字符串中的 [ ] 字符

转载 作者:行者123 更新时间:2023-11-29 04:57:02 25 4
gpt4 key购买 nike

我注意到 SBJson 无法解码这个 json 字符串:

[{"JNAME":"VERSION","DATE": "20111012","TIME": "145020"}]

如果我删除 [ ],字符串将成功解码并返回 NSDictionnary

我的代码:

不工作(返回零):

SBJsonParser *parser = [[SBJsonParser new] autorelease];

NSError *error = nil;

NSDictionary *dict = [ parser objectWithString:result error:&error ];

工作:

SBJsonParser *parser = [[SBJsonParser new] autorelease];

NSInteger len = [result length];

NSError *error = nil

NSString *result2 = [result substringWithRange:NSMakeRange(1, len - 2 ) ];


NSDictionary *dict = [ parser objectWithString:result error:&error ];

有什么想法吗?这很奇怪,因为如果我使用在线解析器或其他 Json 解码函数(例如:使用 PHP),字符串就会成功解码:

php > $json = '[{"JNAME":"VERSION","DATE": "20111012","TIME": "145020"}]';
php > print_r(json_decode($json));
Array
(
[0] => stdClass Object
(
[JNAME] => VERSION
[DATE] => 20111012
[TIME] => 145020
)

)

最佳答案

如果你想要一个数组,你应该有

{"arrayname" : [{"JNAME":"VERSION","DATE": "20111012","TIME": "145020"}]}

NSArray 将有 1 个 NSDictionary 元素。您可以检查 JSON 有效性 here .请注意,解析器将为您提供一个字典,其中包含键@“arrayname”的数组。

关于objective-c - SBJSon 不喜欢 Json 字符串中的 [ ] 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7753978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com