ขั้นตอนที่ 1 Using using System.Runtime.InteropServices เข้ามาใช้งานก่อน ขั้นตอนที่ 2 ใช้ [DllImport("Kernel32")] ในการ Include ตัว Dll เข้ามาใช้งานใน Class ของเรา
งั้นเรามาเริ่มเขียนกันเลยนะครับ
Code (C#)
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace Fw
{
class IniFile
{
public string path;
[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 IniFile(string INIPath)
{
path = INIPath;
}
public void IniWriteValue(string Section, string Key, string Value)
{
WritePrivateProfileString(Section, Key, Value, this.path);
}
public string IniReadValue(string Section, string Key)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path);
return temp.ToString();
}
}
}
เท่านี้แหละครับ เราก็จะได้ Class ที่ใช้ในการอ่านไฟล์ INI โดยเขียนจาก C# เป็นของเราเองแล้วครับ
ทีนี้ก็มาดูวิธีการใช้งานกันบ้าง
อืม... Code ตัวอย่างการใช้งานนี้ผมจะเขียนเฉพาะส่วนที่สำคัญๆ ที่จะใช้เท่านั้นนะครับ ในความเป็นจริงก็ไม่มีอะไรมากหรอกครับ เมื่อเราได้ Class ที่ผ่านไฟล์ INI ที่เราเขียนจาก C# แล้ว ตอนที่เราจะเรียกใช้งานก็แค่ Instance object class ขึ้นมาและเรียกใช้งาน Method + Property ต่างๆที่สามารถ Access ได้ภายใน Class ที่เรา Instance มาเท่านั้นเองแหละครับ ที่จริงก็เป็น Foundation ที่ทุกๆคนมีอยู่แล้ว
ผมสมมุติให้ไฟล์ INI ของผมเป็นแบบนี้นะครับ
[MY_SECTION]
KEY1=Thailand
KEY2=Bangkok
KEY3=Khonkean
Code (C#)
Fw.IniFile ini = new Fw.IniFile(@"c:\\iniTest.ini");
String _value = ini.IniReadValue("MY_SECTION", "KEY1");
ผมอยากรู้ด้วยคนครับ มีผู้รู้ไหม ผมคล้ายๆเม้นบน คือผมต้องเอาค่าที่อ่านออกมาได้จาก ini File ไปเชื่อมต่อกับ Mysql แล้วดึงข้อมูลตามที่ต้องการจาค่าในไฟล์ ini