当前位置:编程学习 > VC++ >>

VC读配置文件

[python] 
char szBugCC[4096]={0}; 
    int nRet = GetPrivateProfileSection("Setting", szBugCC, sizeof(szBugCC), BugConfig.c_str()); 
    if (nRet > 0) 
    { 
        //过滤/0 /0 /00 
        DWORD dwIndex = 0; 
        char szTemp[128]={0}; 
        while (dwIndex < nRet) 
        { 
            strcpy(szTemp, szBugCC+dwIndex); 
            //szTemp "11=11@163.com" 
            CString strTemp(szTemp); 
            int nPos = strTemp.Find("="); 
            m_combo_bugcc.AddString(strTemp.Left(nPos)); 
            dwIndex += strlen(szTemp); 
            dwIndex++; 
        } 
    } 


配置文件格式:
[python] 
[Setting] 
11=11@163.cn 
22=22@163.cn 
ope=0.cn 
作者:xiaocaiju

补充:软件开发 , Vc ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,