在使用CStdioFile读取文件的时候,如果有中文,会出现乱码,下面是解决方法:
首先要添加引用 #include <locale.h>
然后在读取文件的时候加上下面几句就可以了
char* old_locale = _strdup(setlocale(LC_CTYPE,NULL) );
setlocale( LC_CTYPE, "chs" );
if(myFile.Open(_T("C:\\1.txt"), CFile::modeRead))
{
//读取
CString str;
while(myFile.ReadString(str)){
listBox1.InsertString(0,str);
}
myFile.Close();
}
setlocale( LC_CTYPE, old_locale );
free( old_locale );//还原区域设定