- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Chia sẽ class INIHelper dùng để ghi và đọc file config INI
Xin chào các bạn, bài viết hôm nay mình sẻ gởi đến các bạn class INIHelper.cs dùng để ghi vào đọc file config trong lập trình C# Winform.
[C#] INIHelper Read and Write Config
Định dạng INI (files với đuôi .ini) là một định dạng lưu trữ dữ liệu dạng plain-text (văn bản minh bạch, rõ ràng) được sử dụng chủ yếu trong Microsoft Windows để lưu trữ cấu hình. Nó cũng được sử dụng rộng rãi trên nhiều ứng dụng khác.
Để ghi file cấu hình, các bạn có thể sử dụng nhiều định dạng để lưu thông tin cấu hình phổ biến như: XML, JSON, INI, TXT...
Trong đó tập tin INI dùng để lưu cấu hình các bạn thường thấy rất phổ biến.
Nếu bạn nào có sử dụng PHP thì các bạn thấy file config của PHP là một tập tin INI với tên php.ini
Hình ảnh file cấu hình INI C#:
File INIHelper.cs C#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfigHelper
{
namespace Exceptions
{
class InvalidInputException : System.Exception { }
class ValueDoesntExistException : System.Exception { }
class KeyDoesntExistException : System.Exception { }
}
public class INIHelper
{
System.Collections.Hashtable Keys;
System.Collections.Hashtable Values;
public INIHelper()
{
Keys = new System.Collections.Hashtable();
Values = new System.Collections.Hashtable();
}
public INIHelper(System.IO.TextReader tr)
{
Keys = new System.Collections.Hashtable();
Values = new System.Collections.Hashtable();
Parse(tr);
}
public string GetValue(string Key, string ValueName)
{
System.Collections.Hashtable KeyTable = (System.Collections.Hashtable)Keys[Key];
if (KeyTable != null)
{
if (KeyTable.ContainsKey(ValueName))
{
return (string)KeyTable[ValueName];
}
else
{
throw new Exceptions.ValueDoesntExistException();
}
}
else
{
throw new Exceptions.KeyDoesntExistException();
}
}
public string GetValue(string ValueName)
{
if (Values.ContainsKey(ValueName))
{
return (string)Values[ValueName];
}
else
{
throw new Exceptions.ValueDoesntExistException();
}
}
bool KeyExists(string KeyName)
{
return Keys.Contains(KeyName);
}
bool ValueExists(string KeyName, string ValueName)
{
System.Collections.Hashtable KeyTable = (System.Collections.Hashtable)Keys[KeyName];
if (KeyTable != null)
{
return KeyTable.Contains(ValueName);
}
else
{
throw new Exceptions.KeyDoesntExistException();
}
}
bool ValueExists(string ValueName)
{
return Values.Contains(ValueName);
}
public void SetValue(string Key, string ValueName, string Value)
{
System.Collections.Hashtable KeyTable = (System.Collections.Hashtable)Keys[Key];
if (KeyTable != null)
{
KeyTable[ValueName] = Value;
}
else
{
throw new Exceptions.KeyDoesntExistException();
}
}
public void SetValue(string ValueName, string Value)
{
Values[ValueName] = Value;
}
public void AddKey(string NewKey)
{
System.Collections.Hashtable New = new System.Collections.Hashtable();
Keys[NewKey] = New;
}
public void Save(System.IO.TextWriter sw)
{
System.Collections.IDictionaryEnumerator Enumerator = Values.GetEnumerator();
sw.WriteLine("; The values in this group");
while (Enumerator.MoveNext())
{
sw.WriteLine("{0} = {1}", Enumerator.Key, Enumerator.Value);
}
sw.WriteLine("; This is where the keys begins");
Enumerator = Keys.GetEnumerator();
while (Enumerator.MoveNext())
{
System.Collections.IDictionaryEnumerator Enumerator2nd = ((System.Collections.Hashtable)Enumerator.Value).GetEnumerator();
sw.WriteLine("[{0}]", Enumerator.Key);
while (Enumerator2nd.MoveNext())
{
sw.WriteLine("{0} = {1}", Enumerator2nd.Key, Enumerator2nd.Value);
}
}
}
private void Parse(System.IO.TextReader sr)
{
System.Collections.Hashtable CurrentKey = null;
string Line, ValueName, Value;
while (null != (Line = sr.ReadLine()))
{
int j, i = 0;
while (Line.Length > i && Char.IsWhiteSpace(Line, i)) i++;
if (Line.Length <= i)
continue;
if (Line[i] == ';')
continue;
if (Line[i] == '[')
{
string KeyName;
j = Line.IndexOf(']', i);
if (j == -1)
throw new Exceptions.InvalidInputException();
KeyName = Line.Substring(i + 1, j - i - 1).Trim();
if (!Keys.ContainsKey(KeyName))
{
this.AddKey(KeyName);
}
CurrentKey = (System.Collections.Hashtable)Keys[KeyName];
while (Line.Length > ++j && Char.IsWhiteSpace(Line, j)) ;
if (Line.Length > j)
{
if (Line[j] != ';')
throw new Exceptions.InvalidInputException();
}
continue;
}
j = Line.IndexOf('=', i);
if (j == -1)
throw new Exceptions.InvalidInputException();
ValueName = Line.Substring(i, j - i).Trim();
if ((i = Line.IndexOf(';', j + 1)) != -1)
Value = Line.Substring(j + 1, i - (j + 1)).Trim();
else
Value = Line.Substring(j + 1).Trim();
if (CurrentKey != null)
{
CurrentKey[ValueName] = Value;
}
else
{
Values[ValueName] = Value;
}
}
}
}
}
Cách sử dụng ghi và đọc file cấu hình INI c#:
using System;
using System.IO;
using System.Text;
namespace ConfigHelper
{
class Program
{
static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
var conf = new INIHelper();
//write value
conf.AddKey("Person");
conf.AddKey("Language");
conf.SetValue("Person", "Name", "Nguyễn Thảo");
conf.SetValue("Person", "Address", "Bà Rịa Vũng Tàu");
conf.SetValue("Person", "Age", "31");
conf.SetValue("Language", "C#", "No");
conf.SetValue("Language", "VB.NET", "No");
conf.SetValue("Language", "Java", "Yes");
conf.SetValue("Language", "Python", "Yes");
conf.SetValue("username", "ThaoMeo");
conf.SetValue("password", "123456");
StreamWriter sw = new StreamWriter("conf.ini");
conf.Save(sw);
sw.Close();
//Read value
StreamReader sr = new StreamReader("conf.ini");
var conf2 = new INIHelper(sr);
sr.Close();
Console.WriteLine(conf2.GetValue("username"));
Console.WriteLine(conf2.GetValue("password"));
Console.WriteLine(conf2.GetValue("Language", "C#"));
Console.WriteLine(conf2.GetValue("Person", "Name"));
Console.Read();
}
}
}
Kết quả khi chạy hàm trên ta được kết quả như hình bên dưới:
Thanks for watching!