Unicode与Ansi互转
Posted 明哥丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unicode与Ansi互转相关的知识,希望对你有一定的参考价值。
1 BOOL CTool::AnsiToUnicode(const char *pSrc, CString &strResult) 2 { 3 #ifndef _UNICODE 4 return FALSE; 5 #endif 6 int nLen=MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,pSrc,-1,NULL,0); 7 strResult.Empty(); 8 if(nLen==0) 9 return FALSE; 10 wchar_t* pResult=new wchar_t[nLen]; 11 MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,pSrc,-1,pResult,nLen); 12 strResult.Format(_T("%s"),pResult); 13 delete[] pResult; 14 pResult=NULL; 15 return TRUE; 16 } 17 18 wchar_t* CTool::AnsiToUnicode(const char *szStr) 19 { 20 int nLen=MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,szStr,-1,NULL,0); 21 if(nLen==0) 22 return NULL; 23 wchar_t* pResult=new wchar_t[nLen]; 24 MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,szStr,-1,pResult,nLen); 25 return pResult; 26 } 27 28 char* CTool::UnicodeToAnsi(const wchar_t *szStr) 29 { 30 int nLen=WideCharToMultiByte(CP_ACP,0,szStr,-1,NULL,0,NULL,NULL); 31 if(nLen==0) 32 return NULL; 33 char* pResult=new char[nLen]; 34 WideCharToMultiByte(CP_ACP,0,szStr,-1,pResult,nLen,NULL,NULL); 35 return pResult; 36 }
后面两个函数返回一个new的指针,接收用完后需要自己手动释放
以上是关于Unicode与Ansi互转的主要内容,如果未能解决你的问题,请参考以下文章