码迷,mamicode.com
首页 > 编程语言 > 详细

MFC读写配置文件

时间:2015-04-21 14:30:50      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

 

void CFileTextDoc::OnIniread()
{
// TODO: Add your command handler code here
CString strStudName;
 
int nStudAge;
 
GetPrivateProfileString("Info","Name","默认姓名",strStudName.GetBuffer(MAX_PATH),MAX_PATH,"./student.ini");
 
//读入整型值
nStudAge = GetPrivateProfileInt("Info","Age",10,"./student.ini");
CString strAge;
strAge.Format("%d",nStudAge);
 
MessageBox(NULL,strStudName,_T(""),MB_OK);
 
MessageBox(NULL,strAge,_T(""),MB_OK);
}
 
//将信息写入.ini文件中
void CFileTextDoc::OnIniwrite()
{
// TODO: Add your command handler code here
CString strName,strTemp;
 
int nAge;
 
strName="张三";
 
nAge=12;
 
WritePrivateProfileString("Info","Name",strName,"./student.ini");
 
strTemp.Format("%d",nAge);
 
WritePrivateProfileString("Info","Age",strTemp,"./student.ini");
 
WritePrivateProfileString("Info","Sex","男","./student.ini");
 
WritePrivateProfileString("Record","Male","女","./student.ini");
 
MessageBox(NULL,"文件写入成功!",_T(""),MB_OK);
   
}

 

MFC读写配置文件

标签:

原文地址:http://www.cnblogs.com/lvdongjie/p/4444108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!