如何解析iOS中的文件中的JSON?

时间:2013-08-29 21:04:25

标签: html ios json parsing

我正在尝试解析JSON文件中的数据。我试图将解析/获取的数据放入带标签的UIView或webview中。 JSON文件类似于以下内容:

{"bodytext": "<p>\n Some lines here about some webpage (&ldquo; <em>Site</>&rdquo;) some more lines here. \n </p>\n\n <p>\n some more stuff here </p>
}

Stack Overflow上有帖子显示如何解析从Web URL检索到的JSON,但实际上我已经有了一个我要解析的JSON文件。如何解析文件中的JSON?

3 个答案:

答案 0 :(得分:120)

  1. 创建空文本文件(新文件/其他/空),例如“example.json”

  2. 将json字符串粘贴到文件中。

  3. 使用以下行获取数据:

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"example" ofType:@"json"];
    NSData *data = [NSData dataWithContentsOfFile:filePath];
    NSArray *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
    

答案 1 :(得分:18)

接受答案的Swift 2.0版本:

if let filePath = NSBundle.mainBundle().pathForResource("example", ofType: "json"), data = NSData(contentsOfFile: filePath) {
        do {
            let json = try NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.AllowFragments)
        }
        catch {
            //Handle error
        }
    }

答案 2 :(得分:7)

我已经遵循了这一点并且工作正常

NSError *error = nil;
 NSString *filePath = [[NSBundle mainBundle] pathForResource:@"messages" 
                                                      ofType:@"json"];
 NSData *dataFromFile = [NSData dataWithContentsOfFile:filePath];
 NSDictionary *data = [NSJSONSerialization JSONObjectWithData:dataFromFile
                                                      options:kNilOptions
                                                        error:&error];
 if (error != nil) {
  NSLog(@"Error: was not able to load messages.");
  return nil;
 }