1、INI存储
INI 文件是一种简单的文本文件格式,通常用于在 Windows 环境中存储配置数据。INI 文件格式由一系列节(section)和键值对(key-value pairs)组成,用于表示应用程序的配置信息。一个典型的 INI 文件包含多个节,每个节可以包含多个键值对。每个键值对由一个键(key)和一个对应的值(value)组成,它们之间用等号或冒号分隔。INI 文件通常具有 .ini
扩展名。核心操作类似于C#中的字典(Dictionry)。
使用封装的IinAPI文件(先把该文件引入到项目中)
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace Ini {
public class IniAPI {
#region INI文件操作
/*
* 针对INI文件的API操作方法,其中的节点(Section)、键(KEY)都不区分大小写
* 如果指定的INI文件不存在,会自动创建该文件。
*
* CharSet定义的时候使用了什么类型,在使用相关方法时必须要使用相应的类型
* 例如 GetPrivateProfileSectionNames声明为CharSet.Auto,那么就应该使用 Marshal.PtrToStringAuto来读取相关内容
* 如果使用的是CharSet.Ansi,就应该使用Marshal.PtrToStringAnsi来读取内容
*
*/
#region API声明
/// <summary>
/// 获取所有节点名称(Section)
/// </summary>
/// <param name="lpszReturnBuffer">存放节点名称的内存地址,每个节点之间用\0分隔</param>
/// <param name="nSize">内存大小(characters)</param>
/// <param name="lpFileName">Ini文件</param>
/// <returns>内容的实际长度,为0表示没有内容,为nSize-2表示内存大小不够</returns>
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private static extern uint GetPrivateProfileSectionNames(IntPtr lpszReturnBuffer, uint nSize, string lpFileName);
/// <summary>
/// 获取某个指定节点(Section)中所有KEY和Value
/// </summary>
/// <param name="lpAppName">节点名称</param>
/// <param name="lpReturnedString">返回值的内存地址,每个之间用\0分隔</param>
/// <param name="nSize">内存大小(characters)</param>
/// <param name="lpFileName">Ini文件</param>
/// <returns>内容的实际长度,为0表示没有内容,为nSize-2表示内存大小不够</returns>
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private static extern uint GetPrivateProfileSection(string lpAppName, IntPtr lpReturnedString, uint nSize, string lpFileName);
/// <summary>
/// 读取INI文件中指定的Key的值
/// </summary>
/// <param name="lpAppName">节点名称。如果为null,则读取INI中所有节点名称,每个节点名称之间用\0分隔</param>
/// <param name="lpKeyName">Key名称。如果为null,则读取INI中指定节点中的所有KEY,每个KEY之间用\0分隔</param>
/// <param name="lpDefault">读取失败时的默认值</param>
/// <param name="lpReturnedString">读取的内容缓冲区,读取之后,多余的地方使用\0填充</param>
/// <param name="nSize">内容缓冲区的长度</param>
/// <param name="lpFileName">INI文件名</param>
/// <returns>实际读取到的长度</returns>
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private static extern uint GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, [In, Out] char[] lpReturnedString, uint nSize, string lpFileName);
//另一种声明方式,使用 StringBuilder 作为缓冲区类型的缺点是不能接受\0字符,会将\0及其后的字符截断,
//所以对于lpAppName或lpKeyName为null的情况就不适用
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private static extern uint GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, StringBuilder lpReturnedString, uint nSize, string lpFileName);
//再一种声明,使用string作为缓冲区的类型同char[]
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private static extern uint GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, string lpReturnedString, uint nSize, string lpFileName);
/// <summary>
/// 将指定的键值对写到指定的节点,如果已经存在则替换。
/// </summary>
/// <param name="lpAppName">节点,如果不存在此节点,则创建此节点</param>
/// <param name="lpString">Item键值对,多个用\0分隔,形如key1=value1\0key2=value2
/// <para>如果为string.Empty,则删除指定节点下的所有内容,保留节点</para>
/// <para>如果为null,则删除指定节点下的所有内容,并且删除该节点</para>
/// </param>
/// <param name="lpFileName">INI文件</param>
/// <returns>是否成功写入</returns>
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)] //可以没有此行
private static extern bool WritePrivateProfileSection(string lpAppName, string lpString, string lpFileName);
/// <summary>
/// 将指定的键和值写到指定的节点,如果已经存在则替换
/// </summary>
/// <param name="lpAppName">节点名称</param>
/// <param name="lpKeyName">键名称。如果为null,则删除指定的节点及其所有的项目</param>
/// <param name="lpString">值内容。如果为null,则删除指定节点中指定的键。</param>
/// <param name="lpFileName">INI文件</param>
/// <returns>操作是否成功</returns>
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool WritePrivateProfileString(string lpAppName, string lpKeyName, string lpString, string lpFileName);
#endregion
#region 封装
/// <summary>
/// 读取INI文件中指定INI文件中的所有节点名称(Section)
/// </summary>
/// <param name="iniFile">Ini文件</param>
/// <returns>所有节点,没有内容返回string[0]</returns>
public static string[] INIGetAllSectionNames(string iniFile) {
uint MAX_BUFFER = 32767; //默认为32767
string[] sections = new string[0]; //返回值
//申请内存
IntPtr pReturnedString = Marshal.AllocCoTaskMem((int)MAX_BUFFER * sizeof(char));
uint bytesReturned = IniAPI.GetPrivateProfileSectionNames(pReturnedString, MAX_BUFFER, iniFile);
if (bytesReturned != 0) {
//读取指定内存的内容
string local = Marshal.PtrToStringAuto(pReturnedString, (int)bytesReturned).ToString();
//每个节点之间用\0分隔,末尾有一个\0
sections = local.Split(new char[] { '\0' }, StringSplitOptions.RemoveEmptyEntries);
}
//释放内存
Marshal.FreeCoTaskMem(pReturnedString);
return sections;
}
/// <summary>
/// 获取INI文件中指定节点(Section)中的所有条目(key=value形式)
/// </summary>
/// <param name="iniFile">Ini文件</param>
/// <param name="section">节点名称</param>
/// <returns>指定节点中的所有项目,没有内容返回string[0]</returns>
public static string[] INIGetAllItems(string iniFile, string section) {
//返回值形式为 key=value,例如 Color=Red
uint MAX_BUFFER = 32767; //默认为32767
string[] items = new string[0]; //返回值
//分配内存
IntPtr pReturnedString = Marshal.AllocCoTaskMem((int)MAX_BUFFER * sizeof(char));
uint bytesReturned = IniAPI.GetPrivateProfileSection(section, pReturnedString, MAX_BUFFER, iniFile);
if (!(bytesReturned == MAX_BUFFER - 2) || (bytesReturned == 0)) {
string returnedString = Marshal.PtrToStringAuto(pReturnedString, (int)bytesReturned);
items = returnedString.Split(new char[] { '\0' }, StringSplitOptions.RemoveEmptyEntries);
}
Marshal.FreeCoTaskMem(pReturnedString); //释放内存
return items;
}
/// <summary>
/// 获取INI文件中指定节点(Section)中的所有条目的Key列表
/// </summary>
/// <param name="iniFile">Ini文件</param>
/// <param name="section">节点名称</param>
/// <returns>如果没有内容,反回string[0]</returns>
public static string[] INIGetAllItemKeys(string iniFile, string section) {
string[] value = new string[0];
const int SIZE = 1024 * 10;
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
char[] chars = new char[SIZE];
uint bytesReturned = IniAPI.GetPrivateProfileString(section, null, null, chars, SIZE, iniFile);
if (bytesReturned != 0) {
value = new string(chars).Split(new char[] { '\0' }, StringSplitOptions.RemoveEmptyEntries);
}
chars = null;
return value;
}
/// <summary>
/// 读取INI文件中指定KEY的字符串型值
/// </summary>
/// <param name="iniFile">Ini文件</param>
/// <param name="section">节点名称</param>
/// <param name="key">键名称</param>
/// <param name="defaultValue">如果没此KEY所使用的默认值</param>
/// <returns>读取到的值</returns>
public static string INIGetStringValue(string iniFile, string section, string key, string defaultValue) {
string value = defaultValue;
const int SIZE = 1024 * 10;
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
if (string.IsNullOrEmpty(key)) {
throw new ArgumentException("必须指定键名称(key)", "key");
}
StringBuilder sb = new StringBuilder(SIZE);
uint bytesReturned = IniAPI.GetPrivateProfileString(section, key, defaultValue, sb, SIZE, iniFile);
if (bytesReturned != 0) {
value = sb.ToString();
}
sb = null;
return value;
}
public static int GetPrivateProfileInt(string lpAppName, string lpKeyName, int Default, string lpFileName) {
StringBuilder lpReturnedString = new StringBuilder(1024);
GetPrivateProfileString(lpAppName, lpKeyName, Convert.ToString(Default), lpReturnedString, 1024, lpFileName);
return Convert.ToInt32(lpReturnedString.ToString());
}
public static double GetPrivateProfileDouble(string lpAppName, string lpKeyName, double Default, string lpFielName) {
StringBuilder lpReturnedString = new StringBuilder(1024);
GetPrivateProfileString(lpAppName, lpKeyName, Convert.ToString(Default), lpReturnedString, 1024, lpFielName);
//ZazaniaoDll.GetPrivateprofileString(lpAppName,lpKeyName,Convert.ToString(Default),lpReturnedString,1024,lpFielName);
return Convert.ToDouble(lpReturnedString.ToString());
}
public static string GetPrivateProfileString(string lpAppName, string lpKeyName, string Default, string lpFileName) {
StringBuilder lpReturnedString = new StringBuilder(1024);
GetPrivateProfileString(lpAppName, lpKeyName, Default, lpReturnedString, 1024, lpFileName);
return lpReturnedString.ToString();
}
/// <summary>
/// 在INI文件中,将指定的键值对写到指定的节点,如果已经存在则替换
/// </summary>
/// <param name="iniFile">INI文件</param>
/// <param name="section">节点,如果不存在此节点,则创建此节点</param>
/// <param name="items">键值对,多个用\0分隔,形如key1=value1\0key2=value2</param>
/// <returns></returns>
public static bool INIWriteItems(string iniFile, string section, string items) {
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
if (string.IsNullOrEmpty(items)) {
throw new ArgumentException("必须指定键值对", "items");
}
return IniAPI.WritePrivateProfileSection(section, items, iniFile);
}
/// <summary>
/// 在INI文件中,指定节点写入指定的键及值。如果已经存在,则替换。如果没有则创建。
/// </summary>
/// <param name="iniFile">INI文件</param>
/// <param name="section">节点</param>
/// <param name="key">键</param>
/// <param name="value">值</param>
/// <returns>操作是否成功</returns>
public static bool INIWriteValue(string iniFile, string section, string key, string value) {
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
if (string.IsNullOrEmpty(key)) {
throw new ArgumentException("必须指定键名称", "key");
}
if (value == null) {
throw new ArgumentException("值不能为null", "value");
}
return IniAPI.WritePrivateProfileString(section, key, value, iniFile);
}
/// <summary>
/// 在INI文件中,删除指定节点中的指定的键。
/// </summary>
/// <param name="iniFile">INI文件</param>
/// <param name="section">节点</param>
/// <param name="key">键</param>
/// <returns>操作是否成功</returns>
public static bool INIDeleteKey(string iniFile, string section, string key) {
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
if (string.IsNullOrEmpty(key)) {
throw new ArgumentException("必须指定键名称", "key");
}
return IniAPI.WritePrivateProfileString(section, key, null, iniFile);
}
/// <summary>
/// 在INI文件中,删除指定的节点。
/// </summary>
/// <param name="iniFile">INI文件</param>
/// <param name="section">节点</param>
/// <returns>操作是否成功</returns>
public static bool INIDeleteSection(string iniFile, string section) {
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
return IniAPI.WritePrivateProfileString(section, null, null, iniFile);
}
/// <summary>
/// 在INI文件中,删除指定节点中的所有内容。
/// </summary>
/// <param name="iniFile">INI文件</param>
/// <param name="section">节点</param>
/// <returns>操作是否成功</returns>
public static bool INIEmptySection(string iniFile, string section) {
if (string.IsNullOrEmpty(section)) {
throw new ArgumentException("必须指定节点名称", "section");
}
return IniAPI.WritePrivateProfileSection(section, string.Empty, iniFile);
}
#endregion
#endregion
}
}
From1 代码展示
using System;
using System.IO;
using System.Windows.Forms;
namespace ini文件读写测试 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private string camName;
private int exposure;
private int bright;
private string IP;
//配置文件存储路径
string path = Directory.GetCurrentDirectory() + "\\配置文件";
//写入文件
private void btnWrite_Click(object sender, EventArgs e) {
//获取输入框中的数据
camName = txtName.Text;
exposure = Convert.ToInt32(txtExposure.Text);
bright = Convert.ToInt32(txtBright.Text);
IP = txtIP.Text;
//没有文件夹则创建一个文件夹
if (!Directory.Exists(path)) {
Directory.CreateDirectory(path);
}
//文件名路径
string fileName = path + "\\testIni.ini";
Ini.IniAPI.INIWriteValue(fileName, camName, "曝光", exposure.ToString());
Ini.IniAPI.INIWriteValue(fileName, camName, "亮度", bright.ToString());
Ini.IniAPI.INIWriteValue(fileName, camName, "IP", IP);
MessageBox.Show("保存成功");
txtExposure.Text = "";
txtBright.Text = "";
txtIP.Text = "";
txtName.Text = "";
}
//读取文件
private void btnRead_Click(object sender, EventArgs e) {
string fileName = path + "\\testIni.ini";
exposure = Ini.IniAPI.GetPrivateProfileInt(txtName.Text, "曝光", 0, fileName);
bright = Ini.IniAPI.GetPrivateProfileInt(txtName.Text, "亮度", 0, fileName);
IP = Ini.IniAPI.GetPrivateProfileString(txtName.Text, "IP", "127.0.0.1", fileName);
txtExposure.Text = exposure.ToString();
txtBright.Text = bright.ToString();
txtIP.Text = IP.ToString();
txtName.Text = txtName.Text;
MessageBox.Show("读取成功");
}
}
}
2、CSV存储
CSV 是逗号分隔值(Comma-Separated Values)的缩写,是一种常见的文件格式,用于存储表格数据。在 CSV 文件中,每行代表表格中的一行数据记录,而每个字段之间通过逗号进行分隔。CSV 文件通常以纯文本形式存储,可以使用任何文本编辑器进行查看和编辑。它是一种轻量级、易于生成和处理的数据存储格式,常被用于在不同系统之间进行数据交换。
代码展示
using System;
using System.Windows.Forms;
namespace CSV存储 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
//写入
private void btnWrite_Click(object sender, EventArgs e) {
string path = Directory.GetCurrentDirectory() + "\\Data";
if (!Directory.Exists(path)) {
Directory.CreateDirectory(path);
}
//整理文件路径
string fileName = $"{path}\\{DateTime.Now.ToString("yyy-MM-dd")}.csv";
if (!File.Exists(fileName)) {
FileStream fs = new FileStream(fileName, FileMode.Create, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs, Encoding.Default);
StringBuilder sb = new StringBuilder();
sb.Append("时间").Append(",").Append("数据").Append(",").Append("结果");
sw.WriteLine(sb);
sw.Close();
sw.Dispose();
fs.Close();
fs.Dispose();
}
StreamWriter sw2 = new StreamWriter(fileName, true, Encoding.Default);
StringBuilder sb2 = new StringBuilder();
sb2.Append(DateTime.Now.ToString("HH-mm-ss")).Append(",").Append(this.textBox1.Text).Append(",").Append(this.textBox2.Text);
sw2.WriteLine(sb2);
sw2.Close();
sw2.Dispose();
MessageBox.Show("CSV写入成功!");
}
private void button2_Click(object sender, EventArgs e) {
string path = Directory.GetCurrentDirectory() + "\\Data";
//整理文件路径
string fileName = $"{path}\\{DateTime.Now.ToString("yyyy-MM-dd")}.csv";
StreamReader reader = new StreamReader(fileName, Encoding.Default);
//StringBuilder sb = new StringBuilder(reader.ReadLine()); //读取第一行的内容
StringBuilder sb = new StringBuilder(reader.ReadToEnd()); //读取文件中所有的内容
string[] strArr = sb.ToString().Split('\n');
label3.Text = "";
for (int i = 1; i < strArr.Length - 1; i++) {
label3.Text += strArr[i];
}
}
}
}