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

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 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探