aqdx1 2022-11-25 13:27 采纳率: 33.3%
浏览 5
已结题

c#winform怎么循环获取ini的节🥺

百度只能搜到怎么获得某个节下的键的值
想获取节的内容放进下拉表里

  • 写回答

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();
        }
    }
    

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
    1人已打赏

报告相同问题?

问题事件

  • 系统已结题 12月3日
  • 已采纳回答 11月25日
  • 创建了问题 11月25日

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据