什么是ini文件就是一个配置文件,一般把数据库等配置信息放进去,然而,改变数据库的密码,数据库名称,ip等,不要改源码重新编译,只需要用记事本打开set.ini 文件,修改保存即可,不需要修改exe文件,你也修改不了,
跟java的数据库配置信息的properties文件类似或者springboot的yaml文件类似,软编码的抽取,我的数据库配置随时可能动,war包jar包不要动,的好处。
格式是
[Section] 段落
key(键)=value(值) 跟java的HashMap类似 键值对的形式存在
常用代码的积累
项目工程文件添加两个类,设成公有的 方便外部调用 IniFiles.cs 类和 INIHelper.cs 两大类
实现效果如下图
我的主打思想是代码写的再多,你不去调用,放在那里也没事,调用的时候报错,咱们再去慢慢找错误,你写10个类放在那里,只调用那2个,其他8个类也没影响,即使空实现也没事
代码积累
INIHelper.cs 类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Runtime.InteropServices;
namespace iniFileFrm
{
public class INIHelper
{
///
/// 为INI文件中指定的节点取得字符串
///
/// 欲在其中查找关键字的节点名称
/// 欲获取的项名
/// 指定的项没有找到时返回的默认值
/// 指定一个字串缓冲区,长度至少为nSize
/// 指定装载到lpReturnedString缓冲区的最大字符数量
/// INI文件完整路径
/// 复制到lpReturnedString缓冲区的字节数量,其中不包括那些NULL中止字符
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, StringBuilder lpReturnedString, int nSize, string lpFileName);
///
/// 修改INI文件中内容
///
/// 欲在其中写入的节点名称
/// 欲设置的项名
/// 要写入的新字符串
/// INI文件完整路径
/// 非零表示成功,零表示失败
[DllImport("kernel32")]
private static extern int WritePrivateProfileString(string lpApplicationName, string lpKeyName, string lpString, string lpFileName);
///
/// 读取INI文件值
///
/// 节点名
/// 键
/// 未取到值时返回的默认值
/// INI文件完整路径
/// 读取的值
public static string Read(string section, string key, string def, string filePath)
{
StringBuilder sb = new StringBuilder(1024);
GetPrivateProfileString(section, key, def, sb, 1024, filePath);
return sb.ToString();
}
///
/// 写INI文件值
///
/// 欲在其中写入的节点名称
/// 欲设置的项名
/// 要写入的新字符串
/// INI文件完整路径
/// 非零表示成功,零表示失败
public static int Write(string section, string key, string value, string filePath)
{
CheckPath(filePath);
return WritePrivateProfileString(section, key, value, filePath);
}
///
/// 删除节
///
/// 节点名
/// INI文件完整路径
/// 非零表示成功,零表示失败
public static int DeleteSection(string section, string filePath)
{
return Write(section, null, null, filePath);
}
///
/// 删除键的值
///
/// 节点名
/// 键名
/// INI文件完整路径
/// 非零表示成功,零表示失败
public static int DeleteKey(string section, string key, string filePath)
{
return Write(section, key, null, filePath);
}
private static void CheckPath(string path)
{
string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "sys.ini");//在当前程序路径创建
File.Create(filePath);//创建INI文件
}
}
}
第二大类
IniFiles.cs 类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Runtime.InteropServices;
namespace iniFileFrm
{
public class IniFiles
{
public string inipath;
//声明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);
///
/// 构造方法
///
/// 文件路径
public IniFiles(string INIPath)
{
inipath = INIPath;
}
public IniFiles() {
}
///
/// 写入INI文件
///
/// 项目名称(如 [TypeName] )
/// 键
/// 值
public void IniWriteValue(string Section, string Key, string Value)
{
WritePrivateProfileString(Section, Key, Value, this.inipath);
}
///
/// 读出INI文件
///
/// 项目名称(如 [TypeName] )
/// 键
public string IniReadValue(string Section, string Key)
{
StringBuilder temp = new StringBuilder(500);
int i = GetPrivateProfileString(Section, Key, "", temp, 500, this.inipath);
return temp.ToString();
}
///
/// 验证文件是否存在
///
/// 布尔值
public bool ExistINIFile()
{
return File.Exists(inipath);
}
}
}
Form1.cs 主要的代码如下
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace iniFileFrm
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string filePath = @"C:/set.ini";
//写入节点1
INIHelper.Write("s1", "1", "a", filePath);
INIHelper.Write("s1", "2", "b", filePath);
INIHelper.Write("s1", "3", "c", filePath);
//写入节点2
INIHelper.Write("s2", "4", "d", filePath);
INIHelper.Write("s2", "5", "e", filePath);
//改节点值(就是重写一遍)
INIHelper.Write("s1", "3", "c3", filePath);
//读取节点1中的key为1的值
string value = INIHelper.Read("s1", "1", "789", filePath);
//删除节点 / 键
INIHelper.DeleteKey("s1", "2", filePath);//删除节点s1中key为2的值
INIHelper.DeleteSection("s1", filePath);//删除节点s2
}
private void Form1_Load(object sender, EventArgs e)
{
IniFiles f= new IniFiles("./set.ini");
string demo = f.IniReadValue("SectionDemoTest", "UserName");
this.textBox1.Text = demo;
}
}
}