void CMfcReaderDlg::OnBnClickedButton1()
{
// TODO: 在此添加控件通知处理程序代码
UpdateData(TRUE);
//using chinese character reader way.
char* old_locale = _strdup(setlocale(LC_CTYPE, NULL));
setlocale(LC_CTYPE, "chs");
CStdioFile stdFile(L"test.txt", CFile::modeRead);
CString strBuf;
while(stdFile.ReadString(strBuf))
{
MessageBox(strBuf);
}
stdFile.Close();
//release chinese character translation
setlocale(LC_CTYPE, old_locale);
free(old_locale);
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。