第一篇C#日志-ini读写

2021-02-02 09:14

阅读:704

标签:lin   eric   ifile   tar   partial   size   sts   obj   ons   

首先创建一个类,我命名为IniFiles。需要引用命名空间using System.Runtime.InteropServices,System.IO;

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;

namespace WindowsFormsApplication1
{
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代码

 

namespace INI读写
{
public partial class Form1 : Form
{
IniFiles ini = new IniFiles(Application.StartupPath+@"\MyConfig.INI");
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
ini.IniWriteValue("登入详细", "用户名", "test");//写入数据
ini.IniWriteValue("登入详细", "中文账号", "password");//写入数据
if (ini.ExistINIFile())
this.Text = ini.IniReadValue("登入详细","中文账号");

}
}
}

第一篇C#日志-ini读写

标签:lin   eric   ifile   tar   partial   size   sts   obj   ons   

原文地址:https://www.cnblogs.com/menheger/p/11557913.html


评论


亲,登录后才可以留言!