C#中利用Windows的API讀寫配置參數檔案

來源:互聯網
上載者:User

標籤:


讀設定檔與寫設定檔的核心代碼:

[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讀寫配置參數檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.