设置 NSURL 以从网络服务器下载文件
我想从网络服务器下载文件,好吧,到目前为止我知道如何使用 NSURL intiwithstring 下载它;--这个 url 是硬编码的 但现在我需要以下内容:
首先我正在从网络服务器读取文件路径: path = c:/programfiles/yy/ss/file/result.zip
但现在如何将此路径作为 url 来下载此文件。
我真的很困惑.. 先感谢您
I want to download file from webserver, ok till now i know how to download it with NSURL intiwithstring;--this url is hardcoded
but now i need following:
1st i am reading path of file from webserver :
path = c:/programfiles/yy/ss/file/result.zip
but now how to put this path as url to download this file.
i am really very much confused..
thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要有一个网址。您不能只从 Web 服务器的本地磁盘下载非托管文件。让返回本地文件路径的任何内容首先将其转换为 url 并将其与 NSURL 一起使用。
You need to have a url. You can't just download non hosted files from a web server's local disk. Have whatever is returning you that local file path convert it to a url first and use that with NSURL.
好的,我明白了
ok, here i figure it out