Read INI file

以下的程式,是copy別人的source code, 由於copy的時候未將網站記錄下來,已經有些久遠了,在此特別註記!!

利用.ini檔可以動態的在程式中設定一些東西。可以很彈性的使用。無須客戶或是外在的一點點小改變就必須重新更新程式。以下是我的source file, 有興趣的可以參考。程式語言是用C#。

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

public class ReadINI
{
[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);
private bool bDisposed = false;
private string _FilePath = string.Empty;
public string FilePath
{
get
{
if (_FilePath == null)
return string.Empty;
else
return _FilePath;
}
set
{
if (_FilePath != value)
_FilePath = value;
}
}
///
/// 建構子。
///

/// 檔案路徑。
///
public ReadINI(string path)
{
_FilePath = path;
}
///
/// 解構子。
///

///
~ReadINI()
{
Dispose(false);
}
///
/// 釋放資源(程式設計師呼叫)。
///

///
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this); //要求系統不要呼叫指定物件的完成項。
}
///
/// 釋放資源(給系統呼叫的)。
///

///
protected virtual void Dispose(bool IsDisposing)
{
if (bDisposed)
{
return;
}
if (IsDisposing)
{
}
bDisposed = true;
}
///
/// 設定 KeyValue 值。
///

/// Section。
/// Key。
/// Value。
///
public void setKeyValue(string IN_Section, string IN_Key, string IN_Value)
{
WritePrivateProfileString(IN_Section, IN_Key, IN_Value, this._FilePath);
}
///
/// 取得 Key 相對的 Value 值。
///

/// Section。
/// Key。
///
public string getKeyValue(string IN_Section, string IN_Key)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(IN_Section, IN_Key, "", temp, 255, this._FilePath);
return temp.ToString();
}
///
/// 取得 Key 相對的 Value 值,若沒有則使用預設值(DefaultValue)。
///

/// Section。
/// Key。
/// DefaultValue。
///
public string getKeyValue(string Section, string Key, string DefaultValue)
{
StringBuilder sbResult = null;
try
{
sbResult = new StringBuilder(255);
GetPrivateProfileString(Section, Key, "", sbResult, 255, this._FilePath);
return (sbResult.Length > 0) ? sbResult.ToString() : DefaultValue;
}
catch
{
return string.Empty;
}
}
}

留言

這個網誌中的熱門文章

C# 不規則陣列不定長度設定方法

多維陣列的Resize

C#利用DateTime估計程式執行時間