C#擷取ini檔案中全部Section,擷取Section下全部Key

來源:互聯網
上載者:User

標籤:==   builder   div   post   lis   empty   c#   int   section   

using System;using System.Text;using System.IO;using System.Runtime.InteropServices;using System.Collections.Generic;public class OperateIniFile    {        private static String filePath = "";#region API函式宣告        [DllImport("kernel32")]        private static extern long WritePrivateProfileString(string section, string key,            string val, string filePath);
     //需要調用GetPrivateProfileString的重載 [DllImport("kernel32", EntryPoint = "GetPrivateProfileString")] private static extern long GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath); [DllImport("kernel32", EntryPoint = "GetPrivateProfileString")] private static extern uint GetPrivateProfileStringA(string section, string key, string def, Byte[] retVal, int size, string filePath); #endregion public static List<string> ReadSections() { return ReadSections(filePath); } public static List<string> ReadSections(string iniFilename) { List<string> result = new List<string>(); Byte[] buf = new Byte[65536]; uint len = GetPrivateProfileStringA(null, null, null, buf, buf.Length, iniFilename); int j = 0; for (int i = 0; i < len; i++) if (buf[i] == 0) { result.Add(Encoding.Default.GetString(buf, j, i - j)); j = i + 1; } return result; } public static List<string> ReadKeys(String SectionName) { return ReadKeys(SectionName, filePath); } public static List<string> ReadKeys(string SectionName, string iniFilename) { List<string> result = new List<string>(); Byte[] buf = new Byte[65536]; uint len = GetPrivateProfileStringA(SectionName, null, null, buf, buf.Length, iniFilename); int j = 0; for (int i = 0; i < len; i++) if (buf[i] == 0) { result.Add(Encoding.Default.GetString(buf, j, i - j)); j = i + 1; } return result; }public static void SetFilePath(String filepath) { filePath = filepath; } #region 讀Ini檔案 public static string ReadIniData(string Section, string Key, string NoText) { return ReadIniData(Section, Key, NoText, filePath); }
public static string ReadIniData(string Section, string Key, string NoText, string iniFilePath) { if (File.Exists(iniFilePath)) { StringBuilder temp = new StringBuilder(1024); GetPrivateProfileString(Section, Key, NoText, temp, 1024, iniFilePath); return temp.ToString(); } elsereturn String.Empty; } #endregion #region 寫Ini檔案 public static bool WriteIniData(string Section, string Key, string Value) { return WriteIniData(Section, Key, Value, filePath); } public static bool WriteIniData(string Section, string Key, string Value, string iniFilePath) { if (File.Exists(iniFilePath)) { long OpStation = WritePrivateProfileString(Section, Key, Value, iniFilePath); if (OpStation == 0) return false; elsereturn true; } elsereturn false; } #endregion }

 

C#擷取ini檔案中全部Section,擷取Section下全部Key

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.