VC讀寫配置檔案

2021-06-05 00:43:24 字數 3209 閱讀 7679

vc 用函式讀寫ini配置檔案

ini檔案(即initialization file),這種型別的檔案中通常存放的是乙個程式的初始化資訊。ini檔案由若干個節(section)組成,每個section由若干鍵(key)組成,每個key可以賦相應的值。讀寫ini檔案實際上就是讀寫某個的section中相應的key的值,而這只要借助幾個函式即可完成。

一、向ini檔案中寫入資訊的函式

1. 把資訊寫入系統的win.ini檔案

如:::writeprofilestring("test","id","xym");  

//在win.ini中建立乙個test節,並在該節中建立乙個鍵id,其值為xym

::writeprivateprofilestring("test","id","xym","d:\\vc\\ex1\\ex1.ini");

//在ex1目錄下的ex1.ini中建立乙個test節,並在該節中建立乙個鍵id,其值為xym

//若ex1.ini檔案與讀寫該檔案的程式在同乙個目錄下,則上面語句也可寫為:

::writeprivateprofilestring("test","id","xym",".\\ex1.ini");

需要注意的是,c系列的語言中,轉義字元'\\'表示反斜線'\'。另外,當使用相對路徑時,\\前的.號不能丟掉了。

二、從ini檔案中讀取資料的函式

1、從系統的win.ini檔案中讀取資訊

(1) 讀取字串

如:cstring str;

::getprofilestring("test","id","error",str.getbuffer(20),20);

(2) 讀取整數

如使用以下語句寫入了年齡資訊:

::writeprofilestring("test","age","25");  

//在win.ini中建立乙個test節,並在該節中建立乙個鍵age,其值為25

則可用以下語句讀取age鍵的值:

int age;

age=::getprofileint("test","age",0);

如:cstring str;

::getprivateprofilestring("test","id","error",str.getbuffer(20),20,".\\ex1.ini");

或:::getprivateprofilestring("test","id","error",str.getbuffer(20),20,"d:\\vc\\ex1\\ex1.ini");

(2) 讀取整數

如使用以下語句寫入了年齡資訊:

::writeprivateprofilestring("test","age","25",".\\ex1.ini");  

//在ex1.ini中建立乙個test節,並在該節中建立乙個鍵age,其值為25

則可用以下語句讀取age鍵的值:

int age;

age=::getprivateprofileint("test","age",0,".\\ex1.ini");

三、 刪除鍵值或節

由此可見,要刪除某個節,只需要將writeprofilestring第二個引數設為null即可。而要刪除某個鍵,則只需要將該函式的第三個引數設為null即可。這是刪除系統的win.ini中的節或鍵,類似的,要刪除自己定義的ini檔案中的節或鍵,也可做相同的操作。

如:::writeprofilestring("test",null,null);     //刪除win.ini中的test節

::writeprofilestring("test","id",null);     //刪除win.ini中的id鍵

::writeprivateprofilestring("test",null,null,".\\ex1.ini");     //刪除ex1.ini中的test節

::writeprivateprofilestring("test","id",null,".\\ex1.ini");     //刪除ex1.ini中的id鍵

四、如何判斷乙個ini檔案中有多少個節

要判斷乙個ini檔案中有多少個節,最簡單的辦法就是將所有的節名都找出來,然後統計節名的個數。而要將所有的節名找出來,使用getprivateprofilesectionnames函式就可以了,其原型如下:

dword getprivateprofilesectionnames(

lptstr lpszreturnbuffer,     // 指向乙個緩衝區,用來儲存返回的所有節名

dword nsize,                 // 引數lpszreturnbuffer的大小

lpctstr lpfilename           // 檔名,若該ini檔案與程式在同乙個目錄下,

//也可使用相對路徑,否則需要給出絕度路徑

) 下面的是用來統計乙個ini檔案中共有多少個節的函式,當然,如果需要同時找到每個節中的各個鍵及其值,根據找到節名就可以很容易的得到了。

/*統計共有多少個節

節名的分離方法:若chsectionnames陣列的第一字元是'\0'字元,則表明

有0個節。否則,從chsectionnames陣列的第乙個字元開始,順序往後找,

直到找到乙個'\0'字元,若該字元的後繼字元不是 '\0'字元,則表明前

面的字元組成乙個節名。若連續找到兩個'\0'字元,則統計結束*/

int ctestdlg::calccount(void)

;      //所有節名組成的字元陣列

char * psectionname; //儲存找到的某個節名字串的首位址

int i;      //i指向陣列chsectionnames的某個位置,從0開始,順序後移

int j=0;     //j用來儲存下乙個節名字串的首位址相對於當前i的位置偏移量

int count=0;     //統計節的個數

//cstring name;

//char id[20];

::getprivateprofilesectionnames(chsectionnames,2048,".\\ex1.ini");   

for(i=0;i<2048;i++,j++)

}   

} return count;}

vc讀寫配置檔案ini

配置檔案中經常用到ini檔案,在vc中其函式分別為 寫入.ini檔案 lpctstrlpstring,鍵值,也就是資料 lpctstrlpfilename ini檔案的路徑 讀取.ini檔案 lpctstrlpdefault,如果lpreturnedstring為空,則把個變數賦給lpreturne...

讀寫配置檔案

windows作業系統專門為此提供了6個api函式來對配置設定檔案進行讀 寫 getprivateprofileint 從私有初始化檔案獲取整型數值 getprivateprofilestring 從私有初始化檔案獲取字串型值 getprofileint 從win.ini 獲取整數值 getprof...

讀寫配置檔案

procedure curstepchanged curstep tsetupstep varsetupname string inipath string begin case curstep of ssinstall 複製檔案前 begin end sspostinstall 完成複製 begi...