-1
如何從服務器下載.xls表並將其保存在iPhone內存中,如果電子表格大小較大,則過程發生在後臺。將XLS表從服務器下載到IPhone
如何從服務器下載.xls表並將其保存在iPhone內存中,如果電子表格大小較大,則過程發生在後臺。將XLS表從服務器下載到IPhone
用任何方法試試這個。
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];
我假設你的服務器不需要身份驗證
謝謝的,雅阿服務器沒有任何需要身份驗證,但是如果XLS表是先大後過程的背景去automativcally。 – MathewHaiden 2014-12-05 11:43:02
你可以使用線程,也可以單獨組織下載器類。 – 2014-12-05 12:15:43