VC中对CString 的读写(ini文件)
//此處為寫
CString a,b;
a="as";
b="sa"
?CString strFileName;
?CString strKeyName;
?CString strKeyValue;
?CString strpath;
?strpath="C:\\";
?strFileName=strpath+"AllParameter.ini";
?strKeyName="A";
?strKeyValue=a;
?::WritePrivateProfileString("ModelParameter",strKeyName,strKeyValue,strFileName);
?strKeyName="B";
?strKeyValue=b;
?::WritePrivateProfileString("ModelParameter",strKeyName,strKeyValue,strFileName);
//此處為讀
CStirng a,b;
?CString strFileName;
?CString strKeyName;
?CString strKeyValue;
?CString strpath;
?strpath="C:\\";
?strFileName=strpath+"AllParameter.ini";
?strKeyName="A";
?::GetPrivateProfileString("ModelParameter",strKeyName,0,strKeyValue.GetBuffer(MAX_PATH),MAX_PATH,strFileName);
?a=strKeyValue;
?strKeyName="B";
?::GetPrivateProfileString("ModelParameter",strKeyName,0,strKeyValue.GetBuffer(MAX_PATH),MAX_PATH,strFileName);
?b=strKeyValue;
轉(zhuǎn)載于:https://www.cnblogs.com/hj1330296/p/3471576.html
總結(jié)
以上是生活随笔為你收集整理的VC中对CString 的读写(ini文件)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 来到博客园 就要好好记录 分享技术
- 下一篇: 【转】js日期时间函数