当前位置: 首页 > 面试题库 >

多个URL的NSFileManager Swift数组

督灿
2023-03-14
问题内容

我将如何添加多个URL?我不知道如何将其快速设置为数组。

if let audioUrl = NSURL(string: "http://freetone.org/ring/stan/iPhone_5-Alarm.mp3") {
    println("LOADING AUDIO")
    if let myAudioDataFromUrl = NSData(contentsOfURL: audioUrl){
        println("AUDIO LOADED")
        let documentsUrl =  NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0] as NSURL
        let destinationUrl = documentsUrl.URLByAppendingPathComponent(audioUrl.lastPathComponent!)
        println(destinationUrl)

        if NSFileManager().fileExistsAtPath(destinationUrl.path!) {
            println("The file already exists at path")
        } else {
            if myAudioDataFromUrl.writeToURL(destinationUrl, atomically: true) {
                println("file saved")
            } else {
                println("error saving file")
            }
        }
    }
}

问题答案:

在这种情况下,我认为您应该使用NSURLSession.sharedSession()。dataTaskWithURL从链接中进行多次下载,但要保持下载操作异步。您需要向其添加一个回调块。您应该执行以下操作:

let documentsUrl =  NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask).first as NSURL
let musicArray:[String] = ["http://freetone.org/ring/stan/iPhone_5-Alarm.mp3","http://freetone.org/ring/stan2/Samsung_Galaxy_S4-SMS.mp3","https://www.sounddogs.com/sound-effects/25/mp3/235178_SOUNDDOGS__al.mp3"]
var musicUrls:[NSURL!]!

// create a function to start the audio data download
func getAudioDataFromUrl(audioUrl:NSURL, completion: ((data: NSData?) -> Void)) {
    NSURLSession.sharedSession().dataTaskWithURL(audioUrl) { (data, response, error) in
        completion(data:  data)
    }.resume()
}

// create another function to save the audio data
func saveAudioData(audio:NSData, destination:NSURL) -> Bool {
    if audio.writeToURL(destination, atomically: true) {
        println("The file \"\(destination.lastPathComponent!.stringByDeletingPathExtension)\" was successfully saved.")
        return true
    }
    return false
}

// just convert your links to Urls
func linksToUrls(){
    musicUrls = musicArray
        .map() { NSURL(string: $0) }
        .filter() { $0 != nil }
}

// create a loop to start downloading your urls
func startDownloadingUrls(){
    for url in musicUrls {
        let destinationUrl = documentsUrl.URLByAppendingPathComponent(url.lastPathComponent!)
        if NSFileManager().fileExistsAtPath(destinationUrl.path!) {
            println("The file \"\(destinationUrl.lastPathComponent!.stringByDeletingPathExtension)\" already exists at path.")
        } else {
            println("Started downloading \"\(url.lastPathComponent!.stringByDeletingPathExtension)\".")
            getAudioDataFromUrl(url) { data in
                dispatch_async(dispatch_get_main_queue()) {
                    println("Finished downloading \"\(url.lastPathComponent!.stringByDeletingPathExtension)\".")
                    println("Started saving \"\(url.lastPathComponent!.stringByDeletingPathExtension)\".")

                    if self.saveAudioData(data!, destination: self.documentsUrl.URLByAppendingPathComponent(url.lastPathComponent!) ) {
                        // do what ever if writeToURL was successful
                    } else {
                        println("The File \"\(url.lastPathComponent!.stringByDeletingPathExtension)\" was not saved.")
                    }
                }
            }
        }
    }
}

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    println("Begin of code")
    linksToUrls()
    startDownloadingUrls()
    println("End of code")
}


 类似资料:
  • 问题内容: 我将Express与Node一起使用,并且我有一个要求用户可以将URL请求为:。 这样的请求将返回JSON响应。 上述调用之前的JSON数据如下: 通过上述请求,响应JSON数据应为: 我已经配置了Express路由,如下所示: 但这是行不通的。我不确定如何传递多个参数,也就是说,我不确定是否正确的方法。是吗? 问题答案: 如果那不起作用,请尝试使用console.log(req.pa

  • 问题内容: 我在传递带有ajax url的参数时遇到问题。我认为错误在于参数代码语法。请帮助。 我正在按以下方式访问这些参数 问题答案: 为什么要结合GET和POST?使用一个或另一个。 的PHP: 或者,只需正确格式化您的请求即可(您缺少get参数的“&”号)。

  • 问题内容: 我有一个Angular服务/提供程序,将json数据提供给我的控制器,效果很好: 但是 我还需要将json数据从另一个文件提供给同一控制器。 在哪里可以找到如何编写将两个文件都提供给控制器的服务? 问题答案: 您可以更新服务以返回资源的哈希,而不是单个哈希: 您将可以使用它,并在函数名末尾添加和,并且必须将其注入到控制器中,然后再将服务注入到控制器本身中。

  • 问题内容: 我试图弄清楚如何在URL中传递多个参数。我想将纬度和经度从我的android类传递给Java servlet。我怎样才能做到这一点? 在这种情况下,输出(写入文件)为。这是可行的,但我想在两个单独的参数中传递纬度和经度,以便减少在服务器端的工作。如果不可能,我如何至少在&之间添加一个空格,以便可以使用class获取经度和纬度。我试过以下行,但无济于事。 我的servlet代码如下: 我

  • 1.6. 并发获取多个URL Go语言最有意思并且最新奇的特性就是对并发编程的支持。并发编程是一个大话题,在第八章和第九章中会专门讲到。这里我们只浅尝辄止地来体验一下Go语言里的goroutine和channel。 下面的例子fetchall,和前面小节的fetch程序所要做的工作基本一致,fetchall的特别之处在于它会同时去获取所有的URL,所以这个程序的总执行时间不会超过执行时间最长的那一

  • 我打一个geoserver URL从我的应用程序.它返回未知的层从geoserver但这两个层存在于geoserver. 未知层URL:http://127.0.0.1:8080/geoserver/**gwc**/service/仓储管理系统?仓储管理系统 这两个图层(layerA和layerB都存在于GeoSeever中)。如果我单独调用,它将返回图像。但在组合的情况下,它不会返回任何图像并给