ios获取文件内容

方法一:

//通过指定路径读取

NSError *error = nil;

NSString *filePath = [NSString stringWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"test" ofType:@"json"] encoding:NSUTF8StringEncoding error:&error];

NSLog(@"filePath%@",filePath);

 

方法二:

//指定路径读取
NSString *filePath=[[NSBundle mainBundle] pathForResource:@"test"ofType:@"json"];

NSString *str=[[NSString alloc] initWithContentsOfFile:filePath];

NSLog(@"%@",str);

 

你可能感兴趣的:(iOS开发)