从Dropbox iOS读取JSON文件

时间:2015-06-16 11:51:35

标签: ios json parsing dropbox

我有一个应用程序从服务器(dropbox)读取文件并检查版本的场景。如果有新版本,请下载该应用程序。

我正在尝试从link读取文件,但在JSON解析后获取null

NSError *error;
NSString *strFileContent = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"https://www.dropbox.com/s/22mm417fxdqdn8c/FileStructure.txt?dl=0"] 
                                                    encoding:NSUTF8StringEncoding 
                                                       error:&error];

if(!error) {  //Handle error
    // NSLog(@"strFileContent: %@",strFileContent);
    NSData *data = [strFileContent dataUsingEncoding:NSUTF8StringEncoding];

    id json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
    NSLog(@"json : %@",[json description]);
}
else
    NSLog(@"Error in reading!");
}

DropBox的替代方案吗?

2 个答案:

答案 0 :(得分:2)

有一种方法,我发现它很难看,但仍然 第一个问题,如其他人所述:yourURLEtcdl=1 第二个大问题,文件是rtf文件,而不是JSON对象 所以,因为有一种方法可以使用RTF => NSAttributedString => NSString => “JSON”=>获得您想要的价值,这是您可以做的:

NSError *error;
NSURL *url = [NSURL URLWithString:@"https://www.dropbox.com/s/22mm417fxdqdn8c/FileStructure.txt?dl=1"];
NSString *strFileContent = [NSString stringWithContentsOfURL:url
                                                    encoding:NSUTF8StringEncoding
                                                       error:&error];

NSLog(@"strFileContent: %@", strFileContent);

if(!error)
{
    NSError *rtfError;
    NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[strFileContent dataUsingEncoding:NSUTF8StringEncoding]
                                                                               options:@{NSDocumentTypeDocumentAttribute:NSRTFTextDocumentType} documentAttributes:nil
                                                                                 error:&rtfError];
    if (rtfError)
    {
        NSLog(@"RTFError: %@", [rtfError localizedDescription]);
    }
    else
    {
        NSLog(@"string: %@", [attributedString string]);

        NSData *data = [[attributedString string] dataUsingEncoding:NSUTF8StringEncoding];

        NSError *jsonError;
        NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError];
        if (jsonError)
        {
            NSLog(@"JSON Error: %@", [jsonError localizedDescription]);
        }
        else
        {
            NSLog(@"JSON: %@", jsonDict);
            NSInteger version = [[jsonDict objectForKey:@"Version"] integerValue];
            NSLog(@"Version: %ld", (long)version);
        }
    }
}
else
{
    NSLog(@"Error: %@", error);
}

正如我所说的,我发现这些非常好,但它有效,但这个解决方案在我看来相当混乱(用NSData传递两次)。

答案 1 :(得分:1)

这不是包含JSON的文本文件;它是一个包含JSON的RTF文件。这不适用于NSJSONSerialization

{\rtf1\ansi\ansicpg1252\cocoartf1347\cocoasubrtf570
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural

\f0\fs24 \cf0 \{\
  "Version": 1.0,\
  "ImageList": [\
    "Nature.png",\
    "Nature-1.png",\
    "Ballon.png"\
  ]\
\}}

您使用使用RTF的编辑器(默认Mac TextEdit)保存了该文件。你需要重新保存为纯文本。

提供的网址也不正确。如果只需要文件内容,则必须设置dl = 1(url的最后一个组件)。像这样 -

dropbox.com/s/22mm417fxdqdn8c/FileStructure.txt?dl=1