CString 、Char*与LPCWSTR类型转换解决方案

【原文出处】
https://blog.csdn.net/zhouxuguang236/article/details/8761497
https://blog.csdn.net/sl159/article/details/6412171

一、char* 转 LPCWSTR

1、通过MultiByteToWideChar函数转换

MultiByteToWideChar函数是将多字节转换为宽字节的一个API函数,它的原型如下:

int MultiByteToWideChar(  
  UINT CodePage,         // code page  
  DWORD dwFlags,         // character-type options  
  LPCSTR lpMultiByteStr, // string to map  
  int cbMultiByte,       // number of bytes in string  
  LPWSTR lpWideCharStr,  // wide-character buffer  
  int cchWideChar        // size of buffer  
);  

LPCWSTR实际上也是CONST WCHAR *类型

char* szStr = "测试字符串";  
WCHAR wszClassName[256];  
memset(wszClassName,0,sizeof(wszClassName));  
MultiByteToWideChar(CP_ACP,0,szStr,strlen(szStr)+1,wszClassName,  
sizeof(wszClassName)/sizeof(wszClassName[0]));  

2、通过T2W转换宏

char* szStr = "测试字符串";     
CString str = CString(szStr);  
USES_CONVERSION;  
LPCWSTR wszClassName = new WCHAR[str.GetLength()+1];  
wcscpy((LPTSTR)wszClassName,T2W((LPTSTR)str.GetBuffer(NULL)));  
str.ReleaseBuffer(); 

3、通过A2CW转换

char* szStr = "测试字符串";     
CString str = CString(szStr);  
USES_CONVERSION;  
LPCWSTR wszClassName = A2CW(W2A(str));  
str.ReleaseBuffer();  

二、CString转LPCWSTR

1、方法一

CString  strFileName;
LPCWSTR lpcwStr = strFileName.AllocSysString();

2、方法二

CString  str = _T("Test");
USES_CONVERSION;
LPCWSTR lpcwStr = A2CW((LPCSTR)str);

MFC中CString和LPSTR是可以通用,其中A2CW表示(LPCSTR) -> (LPCWSTR),USER_CONVERSION表示用来定义一些中间变量,在使用ATL的转换宏之前必须定义该语句。

三、LPCWSTR转换成CString

 LPCWSTR lpcwStr = L"TestWStr"; 
 CString str(lpcwStr);

猜你喜欢

转载自blog.csdn.net/u014801811/article/details/80185111