C# 上位机开发保存配置ini文件操作方式

一,引用

在使用前需要先引用       

        [DllImport("kernel32")]
        private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);//系统dll导入ini写函数
        [DllImport("kernel32")]
        private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);//系统dll导入ini读函数

二,函数定义

写入.ini文件:

    BOOL WritePrivateProfileString(
      LPCTSTR lpAppName,  // INI文件中的一个字段名[节名]可以有很多个节名
      LPCTSTR lpKeyName,  // lpAppName 下的一个键名,也就是里面具体的变量名
      LPCTSTR lpString,   // 键值,也就是数据
      LPCTSTR lpFileName  // INI文件的路径
    );

读取.ini文件:

    DWORD GetPrivateProfileString(
      LPCTSTR lpAppName,        // INI文件中的一个字段名[节名]可以有很多个节名
      LPCTSTR lpKeyName,        // lpAppName 下的一个键名,也就是里面具体的变量名
      LPCTSTR lpDefault,        // 如果lpReturnedString为空,则把个变量赋给lpReturnedString
      LPTSTR lpReturnedString,  // 存放键值的指针变量,用于接收INI文件中键值(数据)的接收缓冲区
      DWORD nSize,            // lpReturnedString的缓冲区大小
      LPCTSTR lpFileName        // INI文件的路径
    );
 

你可能感兴趣的:(上位机开发)