Swift 3:无法将数据写入plist文件 [英] Swift 3: cannot write data to plist file

查看:300
本文介绍了Swift 3:无法将数据写入plist文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用一个名为 Data.plist 的文件来存储一些简单的非结构化数据,然后将该文件放置在应用程序的根文件夹中.为了简化对该文件的读写,我创建了以下 DataManager 结构.它可以毫无问题地读取Data.plist文件,但不能将数据写入该文件.我不确定问题出在哪里,任何人都可以发现哪里出了问题吗?

I am trying to use a file called Data.plist to store some simple unstructured data, and I placed this file at the root folder of my app. To make it simple to read/write to this file, I created the following DataManager struct. It can read Data.plist file with no problem, but it cannot write data to the file. I am not sure where the problem is, could anyone spot where might be wrong?

struct DataManager {

    static var shared = DataManager()        

    var dataFilePath: String? {        
        return Bundle.main.path(forResource: "Data", ofType: "plist")
    }

    var dict: NSMutableDictionary? {
        guard let filePath = self.dataFilePath else { return nil }
        return NSMutableDictionary(contentsOfFile: filePath)
    }

    let fileManager = FileManager.default

    fileprivate init() {

        guard let path = dataFilePath else { return }
        guard fileManager.fileExists(atPath: path) else {
            fileManager.createFile(atPath: path, contents: nil, attributes: nil) // create the file
            print("created Data.plist file successfully")
            return
        }
    }

    func save(_ value: Any, for key: String) -> Bool {
        guard let dict = dict else { return false }

        dict.setObject(value, forKey: key as NSCopying)
        dict.write(toFile: dataFilePath!, atomically: true)

        // confirm
        let resultDict = NSMutableDictionary(contentsOfFile: dataFilePath!)
        print("saving, dict: \(resultDict)") // I can see this is working

        return true
    }

    func delete(key: String) -> Bool {
        guard let dict = dict else { return false }
        dict.removeObject(forKey: key)
        return true
    }

    func retrieve(for key: String) -> Any? {
        guard let dict = dict else { return false }

        return dict.object(forKey: key)
    }
}

推荐答案

您无法修改应用程序捆绑包中的文件.因此,您通过Bundle.main.path(forResource:ofType:)获取的所有文件都是可读的,但不可写.

You cannot modify the files inside your app bundle. So all the files that you get with Bundle.main.path(forResource:ofType:) are readable but not writable.

如果要修改此文件,则需要先将其复制到应用程序的文档目录中.

If you want to modify this file you will need to copy it inside your app's document directory first.

let initialFileURL = URL(fileURLWithPath: Bundle.main.path(forResource: "Data", ofType: "plist")!)
let documentDirectoryURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last!
let writableFileURL = documentDirectoryURL.appendingPathComponent("Data.plist", isDirectory: false)

do {
    try FileManager.default.copyItem(at: initialFileURL, to: writableFileURL)
} catch {
    print("Copying file failed with error : \(error)")
}

// You can modify the file at writableFileURL

这篇关于Swift 3:无法将数据写入plist文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆