2014-12-05 39 views

回答

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]; 

我假設你的服務器不需要身份驗證

+0

謝謝的,雅阿服務器沒有任何需要身份驗證,但是如果XLS表是先大後過程的背景去automativcally。 – MathewHaiden 2014-12-05 11:43:02

+0

你可以使用線程,也可以單獨組織下載器類。 – 2014-12-05 12:15:43

相關問題