我有一個文本格式的數據,文本格式位於我的應用程序本地文件。我做了我的研究,但我找不到任何關於它的事情。如何在swift中讀取該文本文件。我應該使用Sqlite還是正常的文本文件格式與NSBundle。我希望有人幫助我開始。謝謝。在Swift中讀取本地文本文件IOS
1
A
回答
1
下面將文件中的內容放到一個字符串:
let filePath = NSBundle.mainBundle().pathForResource("file", ofType: "txt");
let fileData = String(filePath!, encoding:NSUTF8StringEncoding, error:nil)!
0
var filePath = NSBundle.mainBundle().pathForResource("world_country_state", ofType:"json")
var nsMutData = NSData(contentsOfFile:filePath!)
var sJson = NSJSONSerialization.JSONObjectWithData(nsMutData!, options: .MutableContainers, error: nil) as! NSMutableDictionary
let arraycOuntry: NSArray = sJson.valueForKey("world")?.allKeys as! NSArray
let states: NSArray = sJson.valueForKey("world")?.valueForKey("USA") as! NSArray
pickerDataSoruce = states.mutableCopy() as! NSMutableArray
In this Code world_country_state.json is My File just You replace your file name.
i think this Code is very helpful for you.
相關問題
- 1. 從本地JavaScript文件中讀取本地文本文件?
- 2. 使用swift讀取文本文件
- 3. 在ios swift中覆蓋文本文件
- 4. Angular4讀取本地文件
- 5. 在Flash中讀取本地文件
- 6. 在AngularJS中讀取本地文件
- 7. 從本地文件夾中讀取文本文件
- 8. 在iOS中讀取本地HTML文件Swift2
- 9. 在應用程序中讀取本地xml文件iOS
- 10. DNN(DotNetNuke)在本地讀取文件
- 11. 在iOS中閱讀文本
- 12. ASP.NET - 從本地資源文件中讀取引用的文本
- 13. 閱讀iOS中的文本文件
- 14. 在J2ME中讀取文本文件
- 15. 在Lua中讀取文本文件
- 16. 在iphone中讀取文本文件
- 17. FileNotFoundException - 在java中讀取文本文件
- 18. 在C++中讀取文本文件
- 19. 在Matlab中讀取文本文件
- 20. 在android中讀取文本文件
- 21. 在android中讀取文本文件
- 22. 在MATLAB中讀取文本文件?
- 23. 在Delphi中讀取文本文件
- 24. 在java中讀取文本文件
- 25. 在matlab中讀取文本文件
- 26. 在ActionScript中讀取文本文件Moblie iOS App
- 27. 從iOS的xml文本文件中提取Json Swift
- 28. 如何在javascript中爲UIAutomation獲取文件內容(基本讀取)本地文件iOS
- 29. 無法從本地文件路徑讀取文本文件 - Spark CSV閱讀器
- 30. 蟒讀取文本文件
謝謝你,這就是我要求的。這個答案對我很有幫助再次感謝你 –