iOSSDK/ファイルIO
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(iOSSDK/ファイルIO);
*目次 [#j9477b9c]
#contents
*参考情報 [#b77138e7]
-[[How To Read a File From Your Application Bundle | iPho...
-[[davedelong/CHCSVParser · GitHub:https://github.co...
*テキストファイルの読み込み [#edc85727]
-バンドルリソースに含まれる"sample.txt"を読み込む例
#pre{{
let path : String = NSBundle.mainBundle().pathFor...
do {
let text = try String(contentsOfFile: path, e...
textView.text = text
print(text)
} catch {
}}
*CSVの読み込み [#vcd3f2bd]
-単純なCSVと仮定した上での読み込み
#pre{{
NSString *filePath = [[NSBundle mainBundle] pathForRe...
NSString *text = [NSString stringWithContentsOfFile:f...
NSArray *lines = [text componentsSeparatedByString:@"...
NSLog(@"line count: %d", lines.count);
for (NSString *row in lines) {
NSArray *values = [row componentsSeparatedByStrin...
NSLog(@"value count: %d", values.count);
}
}}
終了行:
&tag(iOSSDK/ファイルIO);
*目次 [#j9477b9c]
#contents
*参考情報 [#b77138e7]
-[[How To Read a File From Your Application Bundle | iPho...
-[[davedelong/CHCSVParser · GitHub:https://github.co...
*テキストファイルの読み込み [#edc85727]
-バンドルリソースに含まれる"sample.txt"を読み込む例
#pre{{
let path : String = NSBundle.mainBundle().pathFor...
do {
let text = try String(contentsOfFile: path, e...
textView.text = text
print(text)
} catch {
}}
*CSVの読み込み [#vcd3f2bd]
-単純なCSVと仮定した上での読み込み
#pre{{
NSString *filePath = [[NSBundle mainBundle] pathForRe...
NSString *text = [NSString stringWithContentsOfFile:f...
NSArray *lines = [text componentsSeparatedByString:@"...
NSLog(@"line count: %d", lines.count);
for (NSString *row in lines) {
NSArray *values = [row componentsSeparatedByStrin...
NSLog(@"value count: %d", values.count);
}
}}
ページ名: