从服务器下载XLS表到IPhone

时间:2014-12-05 11:31:22

标签: ios iphone xls

如何从服务器下载.xls表格并将其保存在iPhone内存中,如果电子表格尺寸较大,则会在后台进行处理。

1 个答案:

答案 0 :(得分:1)

在任何方法中尝试这一点。

NSURL *url=[NSURL URLWithString:@"http://en.wikipedia.org/wiki"]; //Your URL here

NSData *dbFile = [[NSData alloc] initWithContentsOfURL:url];   

NSString *resourceDocPath = [[NSString alloc] initWithString:[[[[NSBundle mainBundle]  resourcePath] stringByDeletingLastPathComponent]stringByAppendingPathComponent:@"Documents"]];

NSString *filePath = [resourceDocPath stringByAppendingPathComponent:@"Text_file.xls"];  

[dbFile writeToFile:filePath atomically:YES];

我认为您的服务器不需要身份验证

相关问题