winform讀寫ini配置檔案的類及相關呼叫

2021-05-22 00:19:30 字數 882 閱讀 6275

using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.drawing;

using system.text;

using system.windows.forms;

using system.io;

using system.runtime.interopservices;

namespace inifile

private void button1_click(object sender, eventargs e)

public static string readfile()

else

return strconn;

}public static void writefile(string test)

else

}public readinifile(string filename)

public string getstring(string section, string key)

public string filename()

public void writeint(string section, string key, int ival)

public void writestring(string section, string key, string strval)

public void delkey(string section, string key)

public void delsection(string section)}}

configparser讀寫ini配置檔案

讀取配置檔案 寫入配置檔案 判斷某元素是否存在 has option has section 要讀寫的ini檔案 sec a a key1 20 a key2 10 sec b b key1 121 b key2 b value2 b key3 r b key4 127.0.0.1 import c...

讀寫配置檔案 ini

配置檔案中經常用到ini檔案,在vc中其函式分別為 其中個引數的意思 lpctstr lpstring 是鍵值,也就是變數的值,必須為lpctstr或cstring型別 lpctstr lpfilename 完整的ini檔案路徑名 lpctstr lpdefaut 如果沒有其前兩個引數值,則將此值賦...

讀寫配置檔案 ini

在我們寫的程式當中,總有一些配置資訊需要儲存下來,以便完成程式的功能,最簡單的辦法就是將這些資訊寫入ini檔案中,程式初始化時再讀入.具體應用如下 一.將資訊寫入.ini檔案中.1.所用的winapi函式原型為 bool writeprivateprofilestring lpctstr lpkey...