.net 操作INI文件

 
编程环境:VS.NET 2003
语言:C#
目的:操作INI文件
/* INI文件是文本文件,由若干节(section)组成,在每个带方括号的标题下面,
* 是若干个关键词(key)及其对应的值(Value)
 * [Section]
 * Key=Value
*/
************************************************
******Class Code:*********
************************************************
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace it_clientupd.lib
{
 /// <summary>
 /// ReadIniFile 的摘要说明。
 /// Created by Jason
 /// Date:2006-10-26
 /// Create a new ini file to store
 /// or load data from a existing ini file
 /// </summary>
 public class ReadIniFile
 {
  private string ls_iniFileFullPath;
  [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 ReadIniFile()
  {
   //
   // TODO:
在此处添加构造函数逻辑

   //
  }
  public void IniFile(string ls_inifile_path)
  {
   /// <summary>
   /// the full path of the ini file
   /// </summary>
   this.ls_iniFileFullPath = ls_inifile_path;
  }
  /// <summary>
  /// Write data to the ini file
  /// <PARAM name="iniSection">the value of iniSection</PARAM>
  /// <PARAM name="iniKey">the value of iniKey</PARAM>
  /// <PARAM name="iniValue">the value of iniValue</PARAM>
  /// </summary>
  public void Write(string iniSection, string iniKey, string iniValue)
  {
   WritePrivateProfileString(iniSection, iniKey, iniValue, this.ls_iniFileFullPath);
  }
  /// <summary>
  /// Read data value From the Ini File
  /// <PARAM name="iniSection"></PARAM>
  /// <PARAM name="iniKey"></PARAM>
  /// <returns>the iniValue of the specified iniSection & iniKey</returns>
  /// </summary>
  public string Read(string iniSection, string iniKey)
  {
   StringBuilder resultValue = new StringBuilder(255);
   int i = GetPrivateProfileString(iniSection, iniKey, "", resultValue,255, this.ls_iniFileFullPath);
   return resultValue.ToString();
  }
 }
}
.................................................................................................................
.................................................................................................................
页面中引用,实例:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using it_clientupd.lib;
namespace it_clientupd.page
{
 /// <summary>
 /// main
的摘要说明。

 /// </summary>
 public class main : System.Web.UI.Page
 {
  private void Page_Load(object sender, System.EventArgs e)
  {
   //
在此处放置用户代码以初始化页面
   ReadIniFile fileExample = new ReadIniFile();
   fileExample.IniFile(@"C:/check_class.ini");
   fileExample.Write("sectionA", "keyA", "valueA");
   fileExample.Read("sectionA", "keyA");
  }
  #region Web 窗体设计器生成的代码
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN:
该调用是 ASP.NET Web 窗体设计器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  
  /// <summary>
  ///
设计器支持所需的方法 - 不要使用代码编辑器修改
  ///
此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);
  }
  #endregion
 }
}
参考资料 :
 
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
c#.net完美读取及设置INI文件 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace yjjk { public partial class setfdbs : Form { public setfdbs() { InitializeComponent(); } private void setfdbs_Load(object sender, EventArgs e) { string Current; Current = Directory.GetCurrentDirectory();//获取当前根目录 Console.WriteLine("Current directory {0}", Current); Ini ini = new Ini(Current + "/config.ini"); // 读取ini string fdbs = ini.ReadValue("Setting", "fdbs"); string fdname = ini.ReadValue("Setting", "fdname"); tbfdbs.Text = fdbs; tbfdname.Text = fdname; } private void button1_Click(object sender, EventArgs e) { string fdbs, fdname; fdbs = Common.ChkTextInput(tbfdbs.Text.ToString()); fdname = Common.ChkTextInput(tbfdname.Text.ToString()); string Current; Current = Directory.GetCurrentDirectory();//获取当前根目录 Console.WriteLine("Current directory {0}", Current); // 写入ini try { Ini ini = new Ini(Current + "/config.ini"); ini.Writue("Setting", "fdbs", fdbs); ini.Writue("Setting", "fdname", fdname); MessageBox.Show(" 保存成功!!", "提示"); main.fdbs123 = fdbs; this.Close(); } catch { MessageBox.Show(" 配置错误!!", "提示"); } } private void button2_Click(object sender, EventArgs e) { this.Close(); } private void tbfdbs_DoubleClick(object sender, EventArgs e) { selfd selfd = new selfd(); selfd.getstr += new selfd.GetString(selfd_getstr); selfd.ShowDialog(); } void selfd_getstr(string fd, string fdname) { tbfdbs.Text = fd; tbfdname.Text = fdname; } } }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值