CStdioFile WriteString 无法写入中文 已解决
解放方法:
使用setlocale语句设定区域。
需要包含的头文件:
#include <locale>
CStdioFile file;
CFileException pError;setlocale( LC_CTYPE, ("chs"));
if(!file.Open(_T("ttt.txt"), CFile::modeReadWrite | CFile::modeCreate, &pError))
{
MessageBox(_T("Tip"), _T("open failed!"), MB_ICONWARNING);
}
file.WriteString(_T(" dear 静 where are you "));
file.Close();