zoukankan      html  css  js  c++  java
  • c# ini文件操作

    public class INIConfigHelper
        {
            public string Path;     //INI文件名
            [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文件的API函数     
            public INIConfigHelper(string iniPath)
            {
                Path = iniPath;
            }
    
            //类的构造函数,传递INI文件名
            public void IniWriteValue(string section, string key, string value)
            {
                WritePrivateProfileString(section, key, value, this.Path);
            }
    
            //读INI文件         
            public string IniReadValue(string section, string key)
            {
                var temp = new StringBuilder(256);
                int i = GetPrivateProfileString(section, key, "", temp, 256, this.Path);
                return temp.ToString();
            }
        }
    private INIConfigHelper configReader = new INIConfigHelper(string.Concat(AppDomain.CurrentDomain.BaseDirectory, "Config\Counter.ini"));
    读取节点:
    string section = "time";
                    string startTimeStr = configReader.IniReadValue(section, "start");
    更新节点:
    configReader.IniWriteValue("time", "start", maxTime.ToString("yyyy-MM-dd HH:mm:ss"));
  • 相关阅读:
    网管必备网站地址
    数组是否包含某个元素
    Thinking in java(八)
    Thinking in java(八)
    Java8系列之重新认识HashMap
    Java8系列之重新认识HashMap
    MarkdownPad2.5/2 注册码
    MarkdownPad2.5/2 注册码
    java8函数式编程(2)
    java8函数式编程(2)
  • 原文地址:https://www.cnblogs.com/zengwei/p/10981745.html
Copyright © 2011-2022 走看看