gpt4 book ai didi

ios - 在 iOS 中下载文件

转载 作者:行者123 更新时间:2023-11-30 12:40:42 25 4
gpt4 key购买 nike

我正在尝试使用 Swift 下载文件。这是我的代码中的下载器类:

class Downloader {
class func load(URL: URL) {
let sessionConfig = URLSessionConfiguration.default
let session = URLSession(configuration: sessionConfig, delegate: nil, delegateQueue: nil)
let request = NSMutableURLRequest(url: URL)
request.httpMethod = "GET"
let task = session.dataTask(with: URL)
task.resume()
}
}

我这样调用该函数:

if let URL = URL(string: "https://web4host.net/5MB.zip") {
Downloader.load(URL: URL)
}

但弹出此错误消息:

2017-02-16 04:27:37.154780 WiFi Testing[78708:7989639] [] __nw_connection_get_connected_socket_block_invoke 2 Connection has no connected handler 2017-02-16 04:27:37.167092 WiFi Testing[78708:7989639] [] __nw_connection_get_connected_socket_block_invoke 3 Connection has no connected handler 2017-02-16 04:27:37.169050 WiFi Testing[78708:7989627] PAC stream failed with 2017-02-16 04:27:37.170688 WiFi Testing[78708:7989639] [] nw_proxy_resolver_create_parsed_array PAC evaluation error: kCFErrorDomainCFNetwork: 2

有人可以告诉我我做错了什么以及如何解决它吗?谢谢!

最佳答案

缺少接收数据的代码。

使用 URLSession 的委托(delegate)方法或使用完成处理程序实现 dataTask 方法。

此外,对于 GET 请求,您不需要 URLRequest – 无论如何都不要在 Swift 3 中使用 NSMutableURLRequest – 只传递 URL 并且不要使用 URL 作为变量名,它是 Swift 3 中的一个结构体

class Downloader {
class func load(url: URL) { // better func load(from url: URL)
let sessionConfig = URLSessionConfiguration.default
let session = URLSession(configuration: sessionConfig, delegate: nil, delegateQueue: nil)
let task = session.dataTask(with: url) { (data, response, error) in
// handle the error
// process the data
}
task.resume()
}
}

关于ios - 在 iOS 中下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42259516/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com