[原创]INI文件的读写操作

INI文件的读写操作

 

在程序开发中,很多人会把参数保存为ini文件格式,ini文件的一个好处是可以保存为一个结构体主结构,如

[User]

Name=test

UserId=test

[Server]

ServerIp=127.0.0.1

ServerPort=80

……

 

很方便也很容易区分,而且不同节点下的名称可以重复。读取Name时只需要读取User节点下的Name

ini文件的读写是需要调用windowsAPI来操作的。该API方法是在kernel32.dll中。

 

ini文件调用

private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder refVal,int size, string filePath);

参数说明:

sectionINI文件中的段落名称;

keyINI文件中的关键字;

def:无法读取时候时候的缺省数值;

retVal:读取数值;

size:数值的大小;

filePathINI文件的完整路径和名称

 

ini文件调用

 [DllImport("kernel32")]

        private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);

参数说明:

sectionINI文件中的段落;

keyINI文件中的关键字;

valINI文件中关键字的数值;

filePathINI文件的完整的路径和名称

 

       

具体代码如下:

 

public class IniFile
{

    
private static string sIniFile = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "Config.ini");

  //参数说明:section:INI文件中的段落;key:INI文件中的关键字;val:INI文件中关键字的数值;filePath:INI文件的完整的路径和名称
  [DllImport("kernel32")]
  
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);      

   
//参数说明:section:INI文件中的段落名称;key:INI文件中的关键字;def:无法读取时候时候的缺省数值;retVal:读取数值;
   //size:数值的大小;filePath:INI文件的完整路径和名称
   [DllImport("kernel32")]
    
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder refVal, int size, string filePath);      
public static string sUserId =””;
public static string sName =””;
public static string sServerIp =””;
public static string sServerPort =””; 

#region 写入配置文件节
/// <summary>
/// 写入配置文件节
/// </summary>
public static long WriteProfileString(string sSection, string sKey, string sVal, string sFileName)
{
     
return WritePrivateProfileString(sSection, sKey, sVal, sFileName);
}

#endregion 

#region 读取配置文件节
/// <summary>
/// 读取配置文件节
/// </summary>
public static long GetProfileString(string sSection, string sKey, ref string refVal, string sFileName)
{
    StringBuilder sVal 
= new StringBuilder();
    
long lResult = GetPrivateProfileString(sSection, sKey, refVal, sVal, 255, sFileName);
    refVal 
= sVal.ToString();
    
return lResult;
}

#endregion 

#region 写入INI文件节
/// <summary>
/// 写入INI文件节
/// </summary>
public static long WriteIniFileString(string sSection, string sKey, string sVal)
{
    
if (string.IsNullOrEmpty(sVal))
    {
         
return -1;
    }

    
return WritePrivateProfileString(sSection, sKey, sVal, sIniFile);
}

#endregion 

#region 读取INI文件节
/// <summary>
/// 读取INI文件节
/// </summary>
public static long GetIniFileString(string sSection, string sKey, ref string refVal)
{
    StringBuilder sVal 
= new StringBuilder(20482048);
    
long lResult = GetPrivateProfileString(sSection, sKey, refVal, sVal, 1024, sIniFile);

    refVal 
= sVal.ToString();

    
return lResult;

}

#endregion


#region 读取配置文件
/// <summary>
/// 读取配置文件
/// </summary>
public static bool ReadIniFile()
{
    
try
    {
       
// User
       GetIniFileString(
"User""UserId"ref sUserId);
       GetIniFileString(
"User""Name"ref sName); 

       
// Server
       GetIniFileString(
"Server""ServerIp"ref sServerIp);
       GetIniFileString(
"Server""ServerPort"ref sPort);
       
return true;
    }
    
catch (Exception ex)
    {
        
return false;
    }
}

#endregion 

#region 写入配置文件
/// <summary>
/// 写入配置文件
/// </summary>
public static bool WriteIniFile()
{
   
try
   {
        
// User
        WriteIniFileString(
"User""UserId", sUserId);
        WriteIniFileString(
"User""Name", sName); 

        
// Server
        WriteIniFileString(
"Server""ServerIp", sServerIp);
        WriteIniFileString(
"Server""ServerPort", sPort);
        
return true;
    }
    
catch (Exception ex)
    {
        
return false;
    }
}

#endregion

}

 

转载于:https://www.cnblogs.com/chhuic/archive/2010/08/27/1810358.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/379018.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java ResourceBundle keySet()方法及示例

ResourceBundle类keySet()方法 (ResourceBundle Class keySet() method) keySet() method is available in java.util package. keySet()方法在java.util包中可用。 keySet() method is used to get all the existing keys from this ResourceBundle and its super bundles to …

ffplay 分析(音频从Frame(解码后)队列取数据到SDL输出)

《ffplay的数据结构分析》 《ffplay分析&#xff08;从启动到读取线程的操作&#xff09;》 《ffplay分析&#xff08;视频解码线程的操作&#xff09;》 《ffplay分析&#xff08;音频解码线程的操作&#xff09;》 《ffplay分析 &#xff08;视频从Frame(解码后)队列取数据到…

绪论(一)

一、问题驱动—>画出唯一的逻辑结构—>定义存储结构—>实现相应的操作 二、算法—>(定义\特点)步骤—>实现—>评价标准 算法有五大特点&#xff1a; 可行性确定性有穷性(有限性)0个或0个以上的输入至少一个以上的输出 评价标准&#xff1a; 时间复杂度 …

利用 dbghelp.dll 生成 dump 文件

dbghelp.dll windows的系统目录system32下&#xff0c;都有dbghelp.dll&#xff0c;但在实际使用时&#xff0c;往往会让exe加载自己目录下的dll&#xff0c;以避免系统目录下的dll版本不一导致的程序异常。 故一般都是用LoadLibrary()的方式加载Dll&#xff0c;先加载当前目录…

pandas 根据列名索引多列数据_Pandas 数据聚合与分组运算[groupby+apply]速查笔记

利用Pandas将数据进行分组&#xff0c;并将各组进行聚合或自定义函数处理。Pandas中Groupby分组与聚合过程导入模块import pandas as pd缩写df表示Dataframe对象分组df.groupby(col1)&#xff1a; 根据col1列将df全部列分组&#xff08;默认&#xff1a;axis0行&#xff09;df[…

杀毒软件对InstallShield编译过程以及安装包运行的影响

版权声明: 可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息。在某些情况下&#xff0c;杀毒软件会导致InstallShield编译过程崩溃。比如 McAfee VirusScan Enterprise 8.5.0i版本&#xff0c;在某些情况下会在InstallScript工程编译过程中&#xff0c;将ISSe…

Java FileInputStream close()方法与示例

FileInputStream类close()方法 (FileInputStream Class close() method) close() method is available in java.io package. close()方法在java.io包中可用。 close() method is used to close this FileInputStream and free all system resources linked with this stream. c…

ffplay分析 (视频从Frame(解码后)队列取数据到SDL输出)

《ffplay的数据结构分析》 《ffplay分析&#xff08;从启动到读取线程的操作&#xff09;》 《ffplay分析&#xff08;视频解码线程的操作&#xff09;》 《ffplay分析&#xff08;音频解码线程的操作&#xff09;》 《ffplay 分析&#xff08;音频从Frame(解码后)队列取数据到…

线性结构节点类型(三)

一、线性结构 特点 第一个数据元素没有前驱最后一个数据元素没有后继1:1逻辑上相邻、物理上也相邻 类型 线性表(就是一张二维表)(为主研究对象)栈队列 学习方法 画逻辑结构—>定义存储结构—>实现相应的操作 二、线性表 线性结构 逻辑上的1:1存储结构 顺序存储结…

PL/SQL详细介绍

PL/SQL笔记PL/SQL块中只能直接嵌入SELECT,DML(INSERT,UPDATE,DELETE)以及事务控制语句(COMMIT,ROLLBACK,SAVEPOINT),而不能直接嵌入DDL语句(CREATE,ALTER,DROP)和DCL语句(GRANT,REVOKE) 1.检索单行数据 1.1使用标量变量接受数据 v_ename emp.ename%type; v_sal emp.sal%…

redis 备份导出rdb_Redis数据迁移利器之redisshake

“当需要进行Redis实例或集群数据迁移时&#xff0c;我们可以采用导出/导入的方式进行数据迁移&#xff0c;但当需要做数据异地灾备或双活时&#xff0c;再使用传统的方式就不合适了&#xff0c;我们需要借助工具(如redis-port/redis-shake)来完成。”redis-shake介绍redis-sha…

从Live Space搬家到这里

听说Live Space很快要关闭了&#xff0c;所以从http://peking2toronto.spaces.live.com/搬家到这里。转载于:https://www.cnblogs.com/pentest/archive/2010/08/29/1811726.html

java 方法 示例_Java Collectionsfrequency()方法与示例

java 方法 示例集合类的frequency()方法 (Collections Class frequency() method) frequency() method is available in java.util package. frequency()方法在java.util包中可用。 frequency() method is used to return the frequency of the given Object (obj) to the give…

线性结构常规操作(四)

定义存储结构(以单向链表为主) 对于链表的定义&#xff0c;通过结构体进行定义&#xff0c;包括两部分&#xff0c;一是数据域&#xff0c;另一个就是指针&#xff0c;用于指向下一个节点。 1&#xff0c;创建链表 定义链表&#xff1a; struct nodesq{int data;//数据域&a…

ffplay分析 (暂停 / 播放处理)

《ffplay的数据结构分析》 《ffplay分析&#xff08;从启动到读取线程的操作&#xff09;》 《ffplay分析&#xff08;视频解码线程的操作&#xff09;》 《ffplay分析&#xff08;音频解码线程的操作&#xff09;》 《ffplay 分析&#xff08;音频从Frame(解码后)队列取数据到…

源码 状态机_[源码阅读] 阿里SOFA服务注册中心MetaServer(1)

[源码阅读] 阿里SOFA服务注册中心MetaServer(1)0x00 摘要0x01 服务注册中心1.1 服务注册中心简介1.2 SOFARegistry 总体架构1.3 为什么要分层0x02 MetaServer2.1简介2.2 问题0x03 代码结构0x04 启动运行4.1 集成部署4.2 独立部署0x05 总体逻辑5.1 程序主体5.2 配置0x06 启动6.1…

HttpService远程校验

今天学了下HttpService&#xff0c;和大家分享一下。HttpService是用来读取远程数据的一个对象&#xff0c;数据格式为XML。 我做了一个登陆校验的功能&#xff0c;主要是通过HttpService将服务器端的用户数据得到&#xff0c;然后在客户端判断输入的用户名和密码是否存在。 主…

免费开源FTP Server软件FileZilla Server

很多朋友在实际应用中都可能需要用到FTP Server类的软件&#xff0c;这类软件有很多&#xff0c;比较知名的有Serv&#xff0d;U、G6等&#xff0c;这里向大家介绍一下FileZilla Server&#xff0c;Windows平台下一款不错的FTP Server软件&#xff0c;而且是免费的、开源的。 S…

Java BigDecimal floatValue()方法与示例

BigDecimal类floatValue()方法 (BigDecimal Class floatValue() method) floatValue() method is available in java.math package. floatValue()方法在java.math包中可用。 floatValue() method is used to convert a BigDecimal to a float value and when this BigDecimal m…

明明的随机数(快排)

明明想在学校中请一些同学一起做一项问卷调查&#xff0c;为了实验的客观性&#xff0c;他先用计算机生成了N个1到1000之间的随机整数&#xff08;N≤100&#xff09;&#xff0c;对于其中重复的数字&#xff0c;只保留一个&#xff0c;把其余相同的数去掉&#xff0c;不同的数…