当前位置: 首页 > 编程笔记 >

C#实现利用Windows API读写INI文件的方法

公孙阳羽
2023-03-14
本文向大家介绍C#实现利用Windows API读写INI文件的方法,包括了C#实现利用Windows API读写INI文件的方法的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了C#实现利用Windows API读写INI文件的方法。分享给大家供大家参考。具体如下:

写入时,如果没有INI文件,自动创建INI
如果在创建时,GetLastError:5 检查IniPath是否添加了文件名称.ini

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;
namespace NameSpace
{
 /// <summary>
 /// 利用Windows API读写INI文件
 /// 写入时,如果没有INI文件,自动创建INI
 /// 如果在创建时,GetLastError:5 检查IniPath是否添加了文件名称.ini
 /// </summary>
 public class INI
 {
  //声明kernel32.dll函数
  [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);
  //
  [DllImport("kernel32")]
  public static extern uint GetLastError();
  string IniPath = null;
  /// <summary>
  /// 构造方法
  /// </summary>
  /// <param name="INIPath">INI文件的绝对路径,后面不需要斜杠</param>
  /// <param name="INIFileName">INI文件名称使用时不需要斜杠,需要.ini</param>
  public INI(string INIPath,string INIFileName)
  {
   Console.WriteLine("INI Object building");
   IniPath = INIPath + "\\" + INIFileName;
   Console.WriteLine("INIFilePath :" + IniPath);
  }
  /// <summary>
  /// 写入INI文件
  /// </summary>
  /// <param name="Section">Section</param>
  /// <param name="Key">Key</param>
  /// <param name="Value">Value</param>
  public void IniWriteValue(string Section, string Key, string Value)
  {
   Console.WriteLine("---IniWriteValue---");
   Console.WriteLine("Section :" + Section);
   Console.WriteLine("Key :" + Key);
   Console.WriteLine("Value :" + Value);
   Console.WriteLine("IniPath :" + IniPath);
   UInt32 Snapshot = GetLastError();
   //
   WritePrivateProfileString(Section, Key, Value, IniPath);
   if (Snapshot != GetLastError())
   {
    Console.WriteLine("GetLastError :" + GetLastError());
   }
  }
  /// <summary>
  /// 读出INI文件
  /// </summary>
  /// <param name="Section">Section</param>
  /// <param name="Key">Key</param>
  public string IniReadValue(string Section, string Key)
  {
   StringBuilder result = new StringBuilder(256);
   GetPrivateProfileString(Section, Key, null, result, 256, IniPath);
   return result.ToString();
  }
  public bool ExistINIFile()
  {
   return File.Exists(IniPath);
  }
  /// <summary>
  /// creat config file to application ini
  /// </summary>
  /// <param name="dnf_path"></param>
  public void CreateConfig(string IP)
  {
   Console.WriteLine("CreateConfig");
   Console.WriteLine("IP:" + IP);
   try
   {
    WriteConfigIP(IP);
    if (ExistINIFile())
    {
     Console.WriteLine("配置文件创建成功");
    }
    else
    {
     Console.WriteLine("配置文件创建不成功");
    }
   }
   catch (Exception err)
   {
    Console.WriteLine("出错信息:" + err.ToString());
   }
  }
  /// <summary>
  /// write config for ip information
  /// </summary>
  /// <param name="IP"></param>
  public void WriteConfigIP(string IP)
  {
   string Section = "Config";
   string Key = "IP";
   string Value = IP;
   try
   {
    IniWriteValue(Section, Key, Value);
   }
   catch (Exception err)
   {
    Console.WriteLine("出错信息:" + err.ToString());
   }
  }
  public string ReadConfigIP()
  {
   try
   {
    string Section = "Config";
    string result = IniReadValue(Section, "IP");
    Console.WriteLine("ReadConfigIP Result :" + result);
    return result;
   }
   catch (Exception err)
   {
    Console.WriteLine("出错信息:" + err.ToString());
    return "Read Error";
   }
  }
 }
}

希望本文所述对大家的C#程序设计有所帮助。

 类似资料:
  • 本文向大家介绍C#实现读写ini文件类实例,包括了C#实现读写ini文件类实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#实现读写ini文件类。分享给大家供大家参考。具体如下: 这个C#类封装了对INI配置文件进行操作所需的各种函数,包括读取键值、读取键值、删除段落等 希望本文所述对大家的C#程序设计有所帮助。

  • 本文向大家介绍C++读写INI配置文件的类实例,包括了C++读写INI配置文件的类实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C++读写INI配置文件的类。分享给大家供大家参考。具体如下: 1. IniReader.h文件: 2. IniReader.cpp文件: 3. IniWriter.h文件: 4. IniWriter.cpp文件: 5. main.cpp文件: 希望本文所述

  • 本文向大家介绍Python实现读写INI配置文件的方法示例,包括了Python实现读写INI配置文件的方法示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Python实现读写INI配置文件的方法。分享给大家供大家参考,具体如下: 更多关于Python相关内容感兴趣的读者可查看本站专题:《Python函数使用技巧总结》、《Python面向对象程序设计入门与进阶教程》、《Python数据结

  • 本文向大家介绍C#实现文本文件读写方法汇总,包括了C#实现文本文件读写方法汇总的使用技巧和注意事项,需要的朋友参考一下 方法一: 方法二: 方法三: 以上所述就是本文的全部内容了,希望大家能够喜欢。

  • 本文向大家介绍Python3利用openpyxl读写Excel文件的方法实例,包括了Python3利用openpyxl读写Excel文件的方法实例的使用技巧和注意事项,需要的朋友参考一下 前言 Python中常用的操作Excel的三方包有xlrd,xlwt和openpyxl等,xlrd支持读取.xls和.xlsx格式的Excel文件,只支持读取,不支持写入。xlwt只支持写入.xls格式的文件,不

  • 本文向大家介绍利用PHPExcel实现Excel文件的写入和读取,包括了利用PHPExcel实现Excel文件的写入和读取的使用技巧和注意事项,需要的朋友参考一下 作为一个原本的Java党,用过PHP才知道,原来对于Excel文件的写入和读取原来可以这么简单! 利用PHP实现对于Excel的读取,主要借助于PHPExcel插件来完成。 PHPExcel下载地址:PHPExcel下载 一、PHPEx