VC讀取TXT檔案資料(1)

2021-06-09 03:01:19 字數 878 閱讀 5572

一、運用cstdiofile::readstring()

cstdiofile   f("your   file   name");  

cstring   str;  

while(f.readstring(str))  

二、[程式實現]  

假設你已有了名為ts.txt的檔案在你的工程目錄下:  

o=file.getposition();//記錄上次的結果(讀到哪了)

.................  

file.seek(o,0);//接著上回讀

while(file.readstring(sss))  

}  三、字串轉換成數值(詳情參看msdn)

atof, atoi, _atoi64, atol

convert strings to double (atof), integer (atoi, _atoi64), or long (atol).

double atof( const char *string );

int atoi( const char *string );

__int64 _atoi64( const char *string );

long atol( const char *string );

四、兩個字串分割的函式

應用例項:

cstring str;

str="_1_張三_123456789";

cstringarray strary;

splitcstring(str,straryre,'_'); // 分割字串

for ( int i = 0; i < strary.getsize(); i++ )

}

VC讀取TXT檔案資料(1)

一 運用cstdiofile readstring cstdiofile f your file name cstring str while f.readstring str 二 程式實現 假設你已有了名為ts.txt的檔案在你的工程目錄下 o file.getposition 記錄上次的結果 讀...

vc 從txt檔案中讀取資料

數值分析課上老師說要將資料寫在txt檔案上,然後讓程式從txt檔案中讀取資料。讓本來c 已經遺忘了很久的我們無從下手,在網上也檢視了很多,發現大多都是扯淡,放在vc 編輯器上發現並不能執行,不知道是我的問題,還是程式的問題。但是洒家費了很大的力氣才從乙個撇腳的程式中總結出來,原來我們可以這樣從txt...

解析txt檔案資料

publicclassfileaccessextendsactivitycatch exception e 讀檔案在.data data 包名 files 下面 param filename return publicstring readfiledata string filename catch...