-4

如何从服务器下载文件?

有什么方法可以将 pdf 文件从网络服务发送到iPhone吗?

是否有必要将 pdf 转换为任何其他形式,然后发送它也重新转换它?

4

1 回答 1

1

您可以使用以下代码轻松下载 pdf 文件

NSData *pdfData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:downloadUrl]];

    //Store the Data locally as PDF File

NSString *resourceDocPath = [[NSString alloc] initWithString:[[[[NSBundle mainBundle]  resourcePath] stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"Documents"]];
NSString *pdf1;
pdf1 = [NSString stringWithFormat:@"%@.pdf",yourBookTitle];

NSString *filePath = [resourceDocPath stringByAppendingPathComponent:pdf1];

[pdfData writeToFile:filePath atomically:YES];

对于您的第二个问题,将您的 pdf 文件存储到服务器并获取 Url,无需以任何格式转换

于 2012-09-11T05:02:23.943 回答