0

我已经在我的应用程序文件夹中下载了 json 文件,我想从我的应用程序文件夹中读取这些文件以打印特定值。

文件的位置如下:/var/mobile/Containers/Data/Application/63E66EE9-9A1B-4D4D-AEF6-F8C54D159ED0/Library/NoCloud/MyApp/MyFolder/DTS.json

这是文件包含的内容: [{"value":0}] 但是文件内容是在控制台中读取和打印的,正如我在下面提到的但是当我读取特定值时它给出 null

NSURL *libraryDirURL = [[NSFileManager.defaultManager URLsForDirectory:NSLibraryDirectory inDomains:NSUserDomainMask] lastObject];
NSURL *urlDTSK = [libraryDirURL URLByAppendingPathComponent:@"NoCloud/MyApp/MyFolder/DTS.json"];
NSString *filePathDTS = [NSString stringWithContentsOfURL:urlDTSK encoding:NSUTF8StringEncoding error:nil];
NSLog(@"This is Dts PATH %@", filePathDTS);
NSData *dataDTS = [NSData dataWithContentsOfFile:filePathDTS];
NSLog(@"here is DTS data  %@", dataDTS); //this shows null
NSDictionary *jsonDTS = [NSJSONSerialization JSONObjectWithData:dataDTS options:kNilOptions error:nil];
NSLog(@"here is jason DTS %@", jsonDTS);
NSMutableArray *DTSvalue = [jsonDTS valueForKeyPath: @"Value"];
DTSValueIs = DTSvalue[0];
NSLog(@"here is DTS Value first%@", DTSvalue[0]);
NSLog(@"here is DTS value is%@", DTSValueIs);

由此可见This is Dts contents [{"value":0}] 2018-06-11 17:04:40.940006+0500 Muslims 365[3356:819935] here is DTS data (null)

4

3 回答 3

1

发生错误是因为您NSString从文件 URL 获取一个,然后您NSData该字符串获取作为无法工作的文件路径。省略那一步:

NSURL *libraryDirURL = [[NSFileManager.defaultManager URLsForDirectory:NSLibraryDirectory inDomains:NSUserDomainMask] lastObject];
NSURL *urlDTSK = [libraryDirURL URLByAppendingPathComponent:@"NoCloud/MyApp/MyFolder/DTS.json"];
NSData *dataDTS = [NSData dataWithContentsOfURL: urlDTSK];

顺便说一下,检索到的 JSON 是一个数组,您可以Value从第一个元素中获取 key 的值,该元素似乎是一个数值 ( NSNumber)。

并处理错误!

NSError *error;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:dataDTS options:kNilOptions error:&error];
if (error) { NSLog(@"%@", error); }
NSNumber *dtsValue = jsonArray[0][@"value"];
NSLog(@"here is DTS value: %@", dtsValue); // here is DTS value: 0
于 2018-06-11T10:08:56.593 回答
1

libraryDirURL图书馆的路径也是如此。然后urlDTSK是库中特定文件的路径。然后filePathDTS是库中该文件的内容为 UTF8 字符串...

但是dataDTS文件的内容是写在文件中的filePathDTS。我相信代码应该是:

NSData *dataDTS = [NSData dataWithContentsOfFile: urlDTSK.path];
于 2018-06-11T10:07:30.693 回答
0

在您的代码中,您必须分配

NSMutableArray *DTSvalue = [NSMutableArray alloc]init];

使用前。

于 2018-06-11T10:14:47.127 回答