宽字节与char*之间转换

 

宽字节转多字节 :WideCharToMultiByte   //其实这里的多字节就是我们说的char

多字节转宽字节 :MultiByteToWideChar   //多字节也就是ASCII单字节

这四种方法。

下面给一个 宽字符串 转换为 char字符串 的例子。

  BSTR devname;   //olewchar 其实就是wchar

  char *name=NULL;

      pNCP->get_Name(&devname);

      DWORD n=WideCharToMultiByte(CP_OEMCP,NULL,devname,-1,NULL,0,NULL,FALSE);

      name=new char[n];

      WideCharToMultiByte(CP_OEMCP,NULL,devname,-1,name,n,NULL,FALSE);

      cout<<name<<endl;

      delete [] name;

下面是将 char字符串 转换为 unicode字符串,也就是宽字符。

  char sText[20] = {"其实我就是所谓的多字节字符串"};

  DWORD dwNum = MultiByteToWideChar (CP_ACP, 0, sText, -1, NULL, 0);

  wchar_t *pwText;

  pwText = new wchar_t[dwNum];

  MultiByteToWideChar (CP_ACP, 0, pwText, -1, sText, dwSize);

  if(!pwText) {

     delete []pwText;

  }

 

 

//=======下面这个也是转的========================

 

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

1、通过MultiByteToWideChar函数转换

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

  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. );  
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 *类型

 

  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]));  
         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转换宏

  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();  
         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转换

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


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

 

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值