使用C 操作ini檔案

2021-03-31 10:29:35 字數 1522 閱讀 5486

這個類,封裝了

kernal32.dll 

中提供的方法來操作

ini檔案。

簡介:

這裡建立了乙個類,封裝了

kernel32.dll

中提供的兩個方法,用來操作

ini檔案。這兩個方法是:writeprivateprofilestring

getprivateprofilestring

需要引用的命名空間為:system.runtime.interopservices

system.text

類原始檔

using

system;

using

system.runtime.interopservices;

using

system.text;

namespace

ini

///

/// write data to the ini file

///

///

/// section name

///

/// key name

///

/// value name

public

void

iniwritevalue(

string

section,

string

key,

string

value)

///

/// read data value from the ini file

///

///

///

///

///

public

string

inireadvalue(

string

section,

string

key)

} }

使用這個類

按照下列步驟使用: 1.

在你的專案中加入命名空間的引用

using ini;

2.建立乙個如下的

inifile物件

inifile ini = new

inifile("c://test.ini");

3.使用iniwritevalue

方法在指定的配置節給乙個鍵付值,或者使用inireadvalue

方法在指定的乙個配置節中讀取某個鍵的值。

如上所述,在

c#中非常容易將

api函式封裝到你的類中。

C 操作ini檔案

有時候在用c 開發時會需要在本地儲存一些簡單的資料或者配置資訊類的,此時會想起使用ini檔案去完成。下面是我自己寫的簡單的類 引用 using system.runtime.interopservices class cini function 寫入ini檔案 param 節點名稱 鍵 值 檔案路徑...

C 操作INI檔案

ini檔案格式如下 注釋 section key value 例如 我的ini檔案 log logpath c log 操作ini檔案的可以通過呼叫api函式來實現 具體 如下 using system using system.collections.generic using system.te...

c 操作ini檔案

原文 c 操作ini檔案 號右邊的就是關鍵字對應的值 value 其一般形式如下 section1 keyword1 value1 keyword2 value2 keyword3 value3 section2 keyword1 value1 keyword2 value2 class progr...