百度只能搜到怎么获得某个节下的键的值
想获取节的内容放进下拉表里
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无用
悬赏问题
- ¥15 宇视监控服务器无法登录
- ¥15 PADS Logic 原理图
- ¥15 PADS Logic 图标
- ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
- ¥15 DruidDataSource一直closing
- ¥20 气象站点数据求取中~
- ¥15 如何获取APP内弹出的网址链接
- ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
- ¥50 STM32单片机传感器读取错误
- ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据