gpt4 book ai didi

iOS 读取流但返回 null

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

好的男孩女孩们,这是我的概率:

我想在我的 iOS 应用程序中读取 JSON 流,但是当我尝试时,它返回

2013-04-12 02:35:01.479 Test[81414:303] (null)

但是我的文件存在并且绝对不是空的!!你可以在这里找到它http://api.kalokod.com/cce/mainfeed.json

我的阅读脚本是:

NSError *error;

NSURL *file = [NSURL URLWithString:@"http://api.kalokod.com/cce/mainfeed.json"];


NSString *string = [NSString stringWithContentsOfURL:file
encoding:NSUTF8StringEncoding
error:&error];

NSLog(@"%@", string);

最佳答案

我测试了您的代码,收到了 Cocoa Error 261。这意味着您尝试加载的 JSON 未使用 UTF-8 编码,因此使用 NSUTF8StringEncoding 将不起作用。试试这个

NSString *string = [NSString stringWithContentsOfURL:file
encoding:NSASCIIStringEncoding
error:&error];

关于iOS 读取流但返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15961254/

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