您的位置:首页 > 其它

多字节与宽字节相互转换的方法

2007-12-26 15:12 274 查看
也就是WideCharToMultiByte和MultiByteToWideChar函数的使用方法。

多字节向宽字节转换:

wstring converToWideChar( const string& str )
{
 int  len = 0;

 len = str.length();

 int  unicodeLen = ::MultiByteToWideChar(CP_UTF8,0,str.c_str(),-1,NULL,0); 

 wchar_t *  pUnicode; 
 pUnicode = new  wchar_t[unicodeLen+1]; 

 memset(pUnicode,0,(unicodeLen+1)*sizeof(wchar_t)); 

 ::MultiByteToWideChar(CP_UTF8,0,str.c_str(),-1,(LPWSTR)pUnicode,unicodeLen); 

 wstring  rt; 
 rt = ( wchar_t* )pUnicode;
 delete  pUnicode;
 
 return  rt; 
}

 

宽字节向多字节转换:

string converToMultiChar( const wstring& str )
{
 char*     pElementText;
 int    iTextLen;
 // wide char to multi char
 iTextLen = WideCharToMultiByte( CP_ACP,
         0,
         str.c_str(),
         -1,
         NULL,
         0,
         NULL,
         NULL );
 pElementText = new char[iTextLen + 1];
 memset( ( void* )pElementText, 0, sizeof( char ) * ( iTextLen + 1 ) );
 ::WideCharToMultiByte( CP_ACP,
         0,
         str.c_str(),
         -1,
         pElementText,
         iTextLen,
         NULL,
         NULL );
 string strText;
 strText = pElementText;
 delete[] pElementText;

 return strText;
}

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  null string delete