讀:ini的讀有兩種方式
1)、讀取字串:
char str_value[64];
getprivateprofilestring(節名, 鍵名, "null", str_value, sizeof(str_value), "ini目錄");
2)、讀取整數
int int_value ;
int_value = getprivateprofileint(節名, 鍵名, 0, "ini目錄");
寫:char str_value[64];
writeprivateprofilestring(節名, 鍵名, str_value, "ini目錄");
int int_value ;
itoa(int_value, value_data, 10);
writeprivateprofilestring(節名, 鍵名, int_value, "ini目錄");
關於ini的遍歷mfc沒有提供相應的api,所以就採用了其他的一種方式將檔案流的讀寫與ini的讀取相結合,即:檔案流遍歷檔案,結合getling("檔案路徑",string line),和
string.find(),.,。然後通過ini讀寫運算元據
INI檔案讀寫
一 有必要了解ini檔案的結構 注釋 小節名 關鍵字 值 ini檔案允許有多個小節,每個小節又允許有多個關鍵字,後面是該關鍵字的值。值的型別有三種 字串 整型數值和布林值。其中字串存貯在ini檔案中時沒有引號,布林真值用1表示,布林假值用0表示。注釋以分號 開頭。二 定義 1 在inte ce的us...
讀寫ini檔案
using system using system.io using system.text using system.configuration using system.runtime.interopservices using system.collections.specialized us...
讀寫ini檔案
using system using system.io using system.text using system.configuration using system.runtime.interopservices using system.collections.specialized us...