讀書筆記 iOS 讀取文字檔案

2021-09-25 20:02:18 字數 682 閱讀 7510

一,文字檔案的內容。

二,工程目錄

三,viewcontroller.m

- (void)viewdidload 

#pragma -mark -functions

//讀取文字檔案

-(void)readfromtext

nsarray *lines=[textfieldcontents componentsseparatedbystring:@"\n"];

nslog(@"number of lines in the file:%ld",[lines count]);

}

四,輸出如下圖所示:

2015-07-29 22:12:32.692 讀取文字檔案[1362:70871] --textfieldcontents---123

4567

89-----

2015-07-29 22:12:32.692 讀取文字檔案[1362:70871] number of lines in the file:10

讀取文字檔案

void ctestdlg onreadinfo cfile filewrite1 testwrite1.txt cfile modecreate cfile modewrite cfile filewrite2 testwrite2.txt cfile modecreate cfile modew...

讀取文字檔案內容

讀取文字檔案內容 param filepathandname 帶有完整絕對路徑的檔名 param encoding 文字檔案開啟的編碼方式 return 返回文字檔案的內容 public string readtxt string filepathandname,string encoding th...

linux c getline讀取文字檔案

函式原型 istream getline istream is,string str,char delim istream getline istream is,string str 讀取檔案,第乙個按引數delim作為分隔符,第二個以 n 作為分隔符。問題產生 在windows,新建文字文件,輸入...