我计划使用 ASIHttpRequest 从后端服务器下载文件。在采取行动之前,请在此处发布问题以了解有关此功能的更多信息。
作为给出的示例源代码:(演示下载远程 JPG 文件)
ASIHTTPRequest *request;
request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/images/small-image.jpg"]];
[request setDownloadDestinationPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"1.png"]];
[request setDownloadProgressDelegate:imageProgressIndicator1];
[networkQueue addOperation:request];
我的问题是:
- 它可以下载任何格式的文件,如 MP3、视频文件等?任何限制,即文件大小,超时?
好像只需要设置远程文件路径,“ http://allseeing-i.com/ASIHTTPRequest/tests/images/small-image.jpg ”,然后它就可以通过HTTP协议远程下载所有内容。
- 简历功能怎么样?
它通过 YES/NO 提供“RESUME”设置,这足以满足正常的恢复功能吗?例如,如果文件很大,暂停它,然后希望从上次恢复它。
感谢您提供任何意见或意见,在将其纳入我的项目之前,我需要对此进行调查。提前致谢 !