百度只能搜到怎么获得某个节下的键的值
想获取节的内容放进下拉表里
1条回答 默认 最新
浪客 2022-11-25 14:40关注用API GetPrivateProfileString,第一个参数section位NULL则是返回所有节点名字。
https://learn.microsoft.com/zh-cn/windows/win32/api/winbase/nf-winbase-getprivateprofilestring用API GetPrivateProfileString,第一个参数section位NULL则是返回所有节点名字。 [System.Runtime.InteropServices.DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string def, byte[] retVal, int size, string filePath); using System.Text; using System; class Program { [System.Runtime.InteropServices.DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string def, byte[] retVal, int size, string filePath); public static string INI_ReadString(string INI_Path, string section, string key, string Default) { Byte[] Buffer = new Byte[128]; int bufLen = GetPrivateProfileString(section, key, Default, Buffer, 128, INI_Path); return Encoding.Default.GetString(Buffer).Trim(); } static void Main(string[] args) { string s = INI_ReadString(@"E:\test.ini", null, null, null); //最好完整路径 Console.WriteLine(s); Console.ReadLine(); } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?评论 打赏 举报 编辑记录解决 1无用