char*转LPCWSTR解决方案

在Windows编程中,经常会碰到字符串之间的转换,char*转LPCWSTR也是其中一个比较常见的转换。下面就列出几种比较常用的转换方法。

1、通过MultiByteToWideChar函数转换

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

[cpp]  view plain copy
  1. int MultiByteToWideChar(  
  2.   UINT CodePage,         // code page  
  3.   DWORD dwFlags,         // character-type options  
  4.   LPCSTR lpMultiByteStr, // string to map  
  5.   int cbMultiByte,       // number of bytes in string  
  6.   LPWSTR lpWideCharStr,  // wide-character buffer  
  7.   int cchWideChar        // size of buffer  
  8. );  

LPCWSTR实际上也是CONST WCHAR *类型

 

[cpp]  view plain copy
  1.         char* szStr = "测试字符串";  
  2. WCHAR wszClassName[256];  
  3. memset(wszClassName,0,sizeof(wszClassName));  
  4. MultiByteToWideChar(CP_ACP,0,szStr,strlen(szStr)+1,wszClassName,  
  5.     sizeof(wszClassName)/sizeof(wszClassName[0]));  


2、通过T2W转换宏

[cpp]  view plain copy
  1.         char* szStr = "测试字符串";     
  2. CString str = CString(szStr);  
  3. USES_CONVERSION;  
  4. LPCWSTR wszClassName = new WCHAR[str.GetLength()+1];  
  5. wcscpy((LPTSTR)wszClassName,T2W((LPTSTR)str.GetBuffer(NULL)));  
  6. str.ReleaseBuffer();  


 

3、通过A2CW转换

[cpp]  view plain copy
  1. char* szStr = "测试字符串";     
  2. CString str = CString(szStr);  
  3. USES_CONVERSION;  
  4. LPCWSTR wszClassName = A2CW(W2A(str));  
  5. str.ReleaseBuffer();  


上述方法都是UniCode环境下测试的。


原作者链接

http://blog.csdn.net/zhouxuguang236/article/details/8761497




你可能感兴趣的:(格式转换,char转LPCWSTR)