通過c++ 讀寫文本文件的中文亂碼的解決方法


前提:VS2010 ,MFC ,文本文件為ANSI格式。

讀文件:

CString str,fileContent;
CStdioFile myFile, File;
if(myFile.Open(GeneralUtils::GetModuleDir()+_T(\\mx.txt), CFile::modeRead))
{
 //讀取
 while(myFile.ReadString(str))
 {
  str = str + _T("\n");
  ReadStringCharToUnicode(str);
  fileContent = fileContent + str;
 }
 myFile.Close();
}

寫文件:

*.h

#include <locale.h>

*.cpp

setlocale(LC_CTYPE,"chs");
myFile.Open(GeneralUtils::GetModuleDir()+_T(\\mx2.txt), CFile::modeWrite | CFile::modeCreate); 
myFile.WriteString(fileContent);
myFile.Close();


void ReadStringCharToUnicode(CString &str)
{
 char *szBuf = new char[str.GetLength() + 1];//注意“+1”,char字符要求結束符,而CString沒有
 memset(szBuf, '\0',str.GetLength());

 int i;
 for ( i = 0 ; i < str.GetLength(); i++)
 {
  szBuf[i] = (char)str.GetAt(i);
 }
 szBuf[i] = '\0';//結束符。否則會在末尾產生亂碼。

 int nLen;
 WCHAR *ptch;
 CString strOut;
 if(szBuf == NULL)
 {
  return ;
 }
 nLen = MultiByteToWideChar(CP_ACP, 0, szBuf, -1, NULL, 0);//獲得需要的寬字符字節數
 ptch = new WCHAR[nLen];
 memset(ptch, '\0', nLen);
 MultiByteToWideChar(CP_ACP, 0, szBuf, -1, ptch, nLen);
 str.Format(_T("%s"), ptch);

 if(NULL != ptch)
  delete [] ptch;
 ptch = NULL;

 if(NULL != szBuf)
  delete []szBuf;
 szBuf = NULL;
 return ;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM