標籤:
讀設定檔與寫設定檔的核心代碼:
[DllImport("kernel32")] // 讀設定檔方法的6個參數:所在的分區(section)、索引值、 初始預設值、 StringBuilder、 參數長度上限、設定檔路徑 private static extern int GetPrivateProfileString(string section, string key, string deVal, StringBuilder retVal, int size, string filePath); [DllImport("kernel32")] // 寫設定檔方法的4個參數:所在的分區(section)、 索引值、 參數值、 設定檔路徑 private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); public static void SetValue(string section, string key, string value) { //獲得當前路徑,當前是在Debug路徑下 string strPath = Environment.CurrentDirectory + "\\system.ini"; WritePrivateProfileString(section, key, value, strPath); } public static string GetValue(string section, string key) { StringBuilder sb = new StringBuilder(255); string strPath = Environment.CurrentDirectory + "\\system.ini"; //最好初始預設值設定為非空,因為如果設定檔不存在,取不到值,程式也不會報錯 GetPrivateProfileString(section, key, "設定檔不存在,未取到參數", sb, 255, strPath); return sb.ToString(); }
【應用舉例】
功能說明:程式載入時,建立設定檔並往裡面寫入傳輸速率參數。(設定檔不需要事先存在,此Windows的API會自動建立)。點擊button1,將取到的傳輸速率顯示到textBox1中。
完整代碼如下:
using System;using System.CodeDom;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;using System.Runtime.InteropServices;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } [DllImport("kernel32")] // 讀設定檔方法的6個參數:所在的分區(section)、索引值、 初始預設值、 StringBuilder、 參數長度上限、設定檔路徑 private static extern int GetPrivateProfileString(string section, string key, string deVal, StringBuilder retVal, int size, string filePath); [DllImport("kernel32")] // 寫設定檔方法的4個參數:所在的分區(section)、 索引值、 參數值、 設定檔路徑 private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); public static void SetValue(string section, string key, string value) { //獲得當前路徑,當前是在Debug路徑下 string strPath = Environment.CurrentDirectory + "\\system.ini"; WritePrivateProfileString(section, key, value, strPath); } public static string GetValue(string section, string key) { StringBuilder sb = new StringBuilder(255); string strPath = Environment.CurrentDirectory + "\\system.ini"; //最好初始預設值設定為非空,因為如果設定檔不存在,取不到值,程式也不會報錯 GetPrivateProfileString(section, key, "設定檔不存在,未取到參數", sb, 255, strPath); return sb.ToString(); } private void Form1_Load(object sender, EventArgs e) { SetValue("參數","傳輸速率","9600"); } private void button1_Click(object sender, EventArgs e) { textBox1.Text = GetValue("參數", "傳輸速率"); } }}
程式介面:
C#中利用Windows的API讀寫配置參數檔案