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

MFC - CStdioFile 读取txt文件UNICODE 中文异常

时间:2016-09-06 22:51:19      阅读:426      评论:0      收藏:0      [点我收藏+]

标签:

/**********************************
/*
/* #include <locale.h>
/*
/**********************************
// 获取txt文件的全路径
        CString strConfigIniPath = fileDlg.GetPathName();

        CStdioFile fileAccount;
        if (fileAccount.Open(strConfigIniPath, CFile::typeText | CFile::modeRead))
        {
            CString strValue(_T("\0"));

            // 处理UNICODE下【中文乱码】异常
            char * pOldLocale = _strdup(setlocale(LC_CTYPE, NULL));
            setlocale(LC_CTYPE, "chs");

            while (fileAccount.ReadString(strValue))
            {
                strVecAccount.push_back(strValue);
                strValue.Empty();
            }

            // 处理完毕后,释放资源
            setlocale(LC_CTYPE, pOldLocale);
            free(pOldLocale);

        }

        fileAccount.Close();

 

MFC - CStdioFile 读取txt文件UNICODE 中文异常

标签:

原文地址:http://www.cnblogs.com/DuanLaoYe/p/5847416.html

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