1

我有一个需要读取多个文本文件的简单应用程序。但是现在为了访问文件,我在我的笔记本电脑中给出了文件的地址。

let path = "/Users/alimashreghi/Desktop/glossories/science.txt"
var text:String = ""

do{

   text = try NSString(contentsOfFile:path, encoding: NSUTF8StringEncoding) as String

}catch{

}

现在,我担心何时要分发该应用程序。我应该把文本文件放在哪里,我应该如何阅读它们以确保它作为 iPhone 中的应用程序正常工作?

此外,我对分发 swift 应用程序知之甚少。

    //
//  ViewController.swift
//  Test
//
//  Created by Ali Mashreghi on 2016-08-29.
//  Copyright © 2016 Ali Mashreghi. All rights reserved.
//

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
    let data = NSData.init(contentsOfFile: "/Users/TestProj/science.txt") //prints Optional(4380)
    let data = NSData.init(contentsOfFile: "science.txt") //prints nil

    print(data?.length)

    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

}

在此处输入图像描述

4

2 回答 2

3

只需将它们放在应用程序的包中,然后您可以将它们读取为:

NSString *filePath = [[NSBundle mainBundle] pathForResource:  "science" ofType:@"txt"];
NSData *data = [NSData dataWithContentsOfFile:filePath];

或者

    if let filepath = Bundle.main.path(forResource: "science", ofType: "txt")
    {
        let data = NSData.init(contentsOfFile: filepath)
        NSLog("\(data)")
    }

您可以将它们拖放到 Xcode 的导航区域中,确保它们包含在 Xcode 的 Build Phases | 包中。复制捆绑资源。

于 2016-08-28T21:33:48.163 回答
0

斯威夫特 5 版本

func getDataFromBundleFile(_ fileName: String, ofType: String) -> Data? {
    guard let filePath = Bundle.main.path(forResource: fileName, ofType: ofType) else {
        return nil
    }
    return try? Data(contentsOf: URL(fileURLWithPath: filePath))
 }
于 2020-09-29T23:26:28.600 回答