zoukankan      html  css  js  c++  java
  • C#读写ini

    using System;
    using System.IO;
    using System.Runtime.InteropServices;
    using System.Text;
     
    namespace helper
    {
     
        /// <summary> 
        /// ini文件读与写 
        /// </summary> 
        public class ClsIniFile
        {
            //文件INI名称 
            public string Path;
            ////声明读写INI文件的API函数 
            [DllImport("kernel32")]
            private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
            [DllImport("kernel32")]
            private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
            //类的构造函数,传递INI文件名 
            public ClsIniFile(string inipath){ Path = inipath; }
            /// <summary>
            /// 写入INI文件
            /// </summary>
            /// <param name="Section">配置节</param>
            /// <param name="Key">键名</param>
            /// <param name="Value">键值</param>
            public void IniWriteValue(string Section, string Key, string Value)
            {
                WritePrivateProfileString(Section, Key, Value, this.Path);
            }
     
            /// <summary>
            /// 读取制定INI文件键值
            /// </summary>
            /// <param name="Section">配置节</param>
            /// <param name="Key">键名</param>
            /// <returns></returns> 
            public string IniReadValue(string Section, string Key)
            {
                StringBuilder temp = new StringBuilder(255);
                int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.Path);
                return temp.ToString();
            }
        }
    }
  • 相关阅读:
    结果填空:青蛙爬井
    天上的星星 (前缀和)
    Poj3253 Fence Repair (优先队列)
    Requests+BeautifulSoup+正则表达式爬取猫眼电影Top100(名称,演员,评分,封面,上映时间,简介)
    数字图像处理之几种滤波器
    CodeForces
    直方图部分
    Codeforces Round #431 (Div. 2)
    2017中国大学生程序设计竞赛
    C++中数字与字符串之间的转换(转载自http://www.cnblogs.com/luxiaoxun/)
  • 原文地址:https://www.cnblogs.com/ruingking/p/7160601.html
Copyright © 2011-2022 走看看