gpt4 book ai didi

swift - 使用 NSURLSessionDownloadTask 下载文件

转载 作者:行者123 更新时间:2023-11-30 12:02:15 28 4
gpt4 key购买 nike

我需要使用桌面应用程序下载文件。首先,我创建了一个简单的iOS项目,用于下载视频文件,引用这个web site 。有用。我想为 macOS 做几乎同样的事情。

class ViewController: NSViewController, URLSessionDownloadDelegate {
var downloadTask: URLSessionDownloadTask!
var backgroundSession: URLSession!
var assetFile = String() // file in application's sandboxed folder

override func viewDidLoad() {
super.viewDidLoad()

let backgroundSessionConfiguration = URLSessionConfiguration.background(withIdentifier: "backgroundSession")
backgroundSession = Foundation.URLSession(configuration: backgroundSessionConfiguration, delegate: self, delegateQueue: OperationQueue.main)
}

override func viewDidAppear() {
super.viewDidAppear()
let url = URL(string: "https://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4")!
downloadTask = backgroundSession.downloadTask(with: url)
downloadTask.resume()
}

func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
let fileManager = FileManager()
do {
let assetURL = URL(fileURLWithPath: assetFile)
try fileManager.moveItem(at: location, to: assetURL)
} catch {
print("An error occurred while moving file to destination url")
}
}

func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didWriteData bytesWritten: Int64, totalBytesWritten: Int64, totalBytesExpectedToWrite: Int64) {

}

func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
downloadTask = nil
if (error != nil) {
print(error!.localizedDescription) // <<< error here?
} else {
print("The task finished transferring data successfully")
}
}
}

如果我运行它,我会收到一条日志消息,显示“未知错误”。我想知道我做错了什么?我确实将应用程序传输安全设置 > 允许任意加载设置为YES。谢谢。

最佳答案

由于您的应用已沙盒化,请确保在沙盒功能中启用传出连接。

enter image description here

ATS 设置对 HTTPS 连接没有影响

关于swift - 使用 NSURLSessionDownloadTask 下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47071142/

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