123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743 |
- #include "StdAfx.h"
- #include "EncodingConversion.h"
- namespace EncodingConverion
- {
- WCHAR* ASCII2UNICODE(IN LPCCH lpASCIIStr)
- {
- if ( lpASCIIStr == NULL )
- return NULL;
- // 获取宽字符字节数;
- int cchWideChar = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, NULL, 0);
- if ( cchWideChar == 0)
- return NULL;
- // 转换成宽字符串;
- WCHAR *pWideChar = new WCHAR[cchWideChar + 1];
- memset(pWideChar, 0 , sizeof(WCHAR)*(cchWideChar + 1));
- int nWriteNum = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, pWideChar, cchWideChar );
- if ( nWriteNum != cchWideChar)
- {
- if (pWideChar)
- delete []pWideChar;
- return NULL;
- }
- return pWideChar;
- }
- BOOL ASCII2UNICODE(IN LPCCH lpASCIIStr, OUT PWCH pUNICODEStr, IN CONST INT& nUNICODEStrLen)
- {
- if ( lpASCIIStr == NULL )
- return FALSE;
- // 获取宽字符字节数;
- int cchWideChar = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, NULL, 0);
- if ( cchWideChar == 0 || cchWideChar >= nUNICODEStrLen)
- return FALSE;
- // 转换成宽字符串;
- memset(pUNICODEStr, 0 , sizeof(WCHAR)*nUNICODEStrLen);
- int nWriteNum = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, pUNICODEStr, cchWideChar );
- if ( nWriteNum != cchWideChar)
- return FALSE;
- return TRUE;
- }
- BOOL ASCII2UNICODE(IN LPCCH lpASCIIStr, OUT wstring &strResult)
- {
- if ( lpASCIIStr == NULL )
- return FALSE;
- // 获取宽字符字节数;
- int cchWideChar = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, NULL, 0);
- if ( cchWideChar == 0 )
- return FALSE;
- // 转换成宽字符串;
- WCHAR *pResult = new WCHAR[cchWideChar];
- memset(pResult, 0 , sizeof(WCHAR)*cchWideChar);
- int nWriteNum = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, pResult, cchWideChar );
- if ( nWriteNum != cchWideChar)
- return FALSE;
- strResult = pResult;
- if ( pResult )
- delete[] pResult;
- return TRUE;
- }
- CHAR* UNICODE2ASCII(IN LPWCH lpUNICODEStr)
- {
- if ( lpUNICODEStr == NULL )
- return NULL;
- // 获取多字节字符字节数;
- int cbMultiByte = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
- if ( cbMultiByte == 0 )
- return NULL;
- // 转换成多字节字符;
- CHAR *pMultiByteStr = new CHAR[cbMultiByte+1];
- memset(pMultiByteStr, 0, cbMultiByte + 1);
- int nWriteNum = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, pMultiByteStr, cbMultiByte, NULL, NULL);
- if (nWriteNum != cbMultiByte)
- {
- if (pMultiByteStr)
- delete []pMultiByteStr;
- return NULL;
- }
- return pMultiByteStr;
- }
- BOOL UNICODE2ASCII(IN LPWCH lpUNICODEStr, OUT LPCH pASCIIStr, IN CONST INT& nASCIIStrLen)
- {
- if ( lpUNICODEStr == NULL )
- return FALSE;
- // 获取多字节字符字节数;
- int cbMultiByte = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
- if ( cbMultiByte == 0 || cbMultiByte >= nASCIIStrLen )
- return FALSE;
- // 转换成多字节字符;
- memset((void*)pASCIIStr, 0, nASCIIStrLen);
- int nWriteNum = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, pASCIIStr, cbMultiByte, NULL, NULL);
- if (nWriteNum != cbMultiByte)
- {
- return FALSE;
- }
- return TRUE;
- }
- BOOL UNICODE2ASCII(IN LPWCH lpUNICODEStr, OUT string &strResult)
- {
- if ( lpUNICODEStr == NULL )
- return FALSE;
- // 获取多字节字符字节数;
- int cbMultiByte = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
- if ( cbMultiByte == 0 )
- return FALSE;
- // 转换成多字节字符;
- CHAR* pResult = new CHAR[cbMultiByte];
- memset(pResult, 0, cbMultiByte);
- int nWriteNum = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, pResult, cbMultiByte, NULL, NULL);
- if (nWriteNum != cbMultiByte)
- return FALSE;
- strResult = pResult;
- if ( pResult )
- delete[] pResult;
- return TRUE;
- }
- CHAR* UNICODE2UTF8(IN LPWCH lpUNICODEStr)
- {
- if ( lpUNICODEStr == NULL )
- return NULL;
- // 获取多字节字符字节数;
- int cbMultiByte = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
- if ( cbMultiByte == 0 )
- return NULL;
- // 转换成多字节字符;
- CHAR* pMultiByteStr = new CHAR[cbMultiByte+1];
- memset(pMultiByteStr, 0, cbMultiByte + 1);
- int nWriteNum = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, pMultiByteStr, cbMultiByte, NULL, NULL);
- if (nWriteNum != cbMultiByte)
- {
- if (pMultiByteStr)
- delete []pMultiByteStr;
- return NULL;
- }
- return pMultiByteStr;
- }
- BOOL UNICODE2UTF8(IN LPWCH lpUNICODEStr, OUT LPCH pUTF8Str, IN CONST INT& nUTF8StrLen)
- {
- if ( lpUNICODEStr == NULL )
- return FALSE;
- // 获取多字节字符字节数;
- int cbMultiByte = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
- if ( cbMultiByte == 0 || cbMultiByte >= nUTF8StrLen )
- return FALSE;
- // 转换成多字节字符;
- memset(pUTF8Str, 0, nUTF8StrLen);
- int nWriteNum = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, pUTF8Str, cbMultiByte, NULL, NULL);
- if (nWriteNum != cbMultiByte)
- {
- return FALSE;
- }
- return TRUE;
- }
- BOOL UNICODE2UTF8(IN LPWCH lpUNICODEStr, OUT string &strResult)
- {
- if ( lpUNICODEStr == NULL )
- return FALSE;
- // 获取多字节字符字节数;
- int cbMultiByte = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
- if ( cbMultiByte == 0 )
- return FALSE;
- // 转换成多字节字符;
- CHAR *pResult = new CHAR[cbMultiByte];
- memset(pResult, 0, cbMultiByte);
- int nWriteNum = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, pResult, cbMultiByte, NULL, NULL);
- if (nWriteNum != cbMultiByte)
- return FALSE;
- strResult = pResult;
- if ( pResult )
- delete[] pResult;
- return TRUE;
- }
- CHAR* ASCII2UTF8(IN LPCCH lpASCIIStr)
- {
- // 将ASCII字符串转成UNICODE字符串;
- WCHAR* pWideChar = ASCII2UNICODE(lpASCIIStr);
- if ( pWideChar == NULL )
- return NULL;
- // 再将UICODE转成UTF8;
- CHAR* pUTF8 = UNICODE2UTF8(pWideChar);
- if ( pWideChar )
- delete []pWideChar;
- return pUTF8;
- }
- BOOL ASCII2UTF8(IN LPCCH lpASCIIStr, OUT LPCH pUTF8Str, IN CONST INT& nUTF8StrLen)
- {
- // 将ASCII字符串转成UNICODE字符串;
- WCHAR* pWideChar = ASCII2UNICODE(lpASCIIStr);
- if ( pWideChar == NULL )
- return FALSE;
- // 再将UICODE转成UTF8;
- BOOL bResult = UNICODE2UTF8(pWideChar, pUTF8Str, nUTF8StrLen);
- if ( pWideChar )
- delete []pWideChar;
- return bResult;
- }
- BOOL ASCII2UTF8(IN LPCCH lpASCIIStr, OUT string &strResult)
- {
- // 将ASCII字符串转成UNICODE字符串;
- WCHAR* pWideChar = ASCII2UNICODE(lpASCIIStr);
- if ( pWideChar == NULL )
- return FALSE;
- // 再将UICODE转成UTF8;
- BOOL bResult = UNICODE2UTF8(pWideChar, strResult);
- if ( pWideChar )
- delete []pWideChar;
- return bResult;
- }
- WCHAR* UTF82UNICODE(IN LPCCH lpUTF8)
- {
- if ( lpUTF8 == NULL )
- return NULL;
- // 获取unicode字符数;
- int cchWideChar = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, NULL, 0);
- if ( cchWideChar == 0)
- return NULL;
- // 转换成宽字符串;
- WCHAR *pWideChar = new WCHAR[cchWideChar + 1];
- memset(pWideChar, 0 , sizeof(WCHAR)*(cchWideChar + 1));
- int nWriteNum = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, pWideChar, cchWideChar );
- if ( nWriteNum != cchWideChar)
- {
- if (pWideChar)
- delete []pWideChar;
- return NULL;
- }
- return pWideChar;
- }
- BOOL UTF82UNICODE(IN LPCCH lpUTF8, OUT PWCH pUNICODEStr, IN CONST INT& nUNICODEStrLen)
- {
- if ( lpUTF8 == NULL )
- return FALSE;
- // 获取宽字符字节数;
- int cchWideChar = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, NULL, 0);
- if ( cchWideChar == 0 || cchWideChar >= nUNICODEStrLen)
- return FALSE;
- // 转换成宽字符串;
- memset(pUNICODEStr, 0 , sizeof(WCHAR)*nUNICODEStrLen);
- int nWriteNum = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, pUNICODEStr, cchWideChar );
- if ( nWriteNum != cchWideChar)
- return FALSE;
- return TRUE;
- }
- BOOL UTF82UNICODE(IN LPCCH lpUTF8, OUT wstring &strResult)
- {
- if ( lpUTF8 == NULL )
- return FALSE;
- // 获取宽字符字节数;
- int cchWideChar = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, NULL, 0);
- if ( cchWideChar == 0 )
- return FALSE;
- // 转换成宽字符串;
- WCHAR* pResult = new WCHAR[cchWideChar];
- memset(pResult, 0 , sizeof(WCHAR)*cchWideChar);
- int nWriteNum = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, pResult, cchWideChar );
- if ( nWriteNum != cchWideChar)
- return FALSE;
- strResult = pResult;
- if ( pResult )
- delete[] pResult;
- return TRUE;
- }
- CHAR* UTF82ASCII(IN LPCCH lpUTF8)
- {
- // 将ASCII字符串转成UNICODE字符串;
- WCHAR* pWideChar = UTF82UNICODE(lpUTF8);
- if ( pWideChar == NULL )
- return NULL;
- // 再将UICODE转成UTF8;
- CHAR* pUTF8 = UNICODE2ASCII(pWideChar);
- if ( pWideChar )
- delete []pWideChar;
- return pUTF8;
- }
- BOOL UTF82ASCII(IN LPCCH lpUTF8, OUT LPCH pASCIIStr, IN CONST INT& nASCIIStrLen)
- {
- // 将ASCII字符串转成UNICODE字符串;
- WCHAR* pWideChar = UTF82UNICODE(lpUTF8);
- if ( pWideChar == NULL )
- return FALSE;
- // 再将UICODE转成UTF8;
- BOOL bResult = UNICODE2ASCII(pWideChar, pASCIIStr, nASCIIStrLen);
- if ( pWideChar )
- delete []pWideChar;
- return bResult;
- }
- BOOL UTF82ASCII(IN LPCCH lpUTF8, OUT string &strResult)
- {
- // 将ASCII字符串转成UNICODE字符串;
- WCHAR* pWideChar = UTF82UNICODE(lpUTF8);
- if ( pWideChar == NULL )
- return FALSE;
- // 再将UICODE转成UTF8;
- BOOL bResult = UNICODE2ASCII(pWideChar, strResult);
- if ( pWideChar )
- delete []pWideChar;
- return bResult;
- }
- //做为解Url使用
- char CharToInt(char ch)
- {
- if (ch >= '0' && ch <= '9')return (char)(ch - '0');
- if (ch >= 'a' && ch <= 'f')return (char)(ch - 'a' + 10);
- if (ch >= 'A' && ch <= 'F')return (char)(ch - 'A' + 10);
- return -1;
- }
- char StrToBin(IN char (&str)[2])
- {
- char tempWord[2];
- char chn;
- tempWord[0] = CharToInt(str[0]); //make the B to 11 -- 00001011
- tempWord[1] = CharToInt(str[1]); //make the 0 to 0 -- 00000000
- chn = (tempWord[0] << 4) | tempWord[1]; //to change the BO to 10110000
- return chn;
- }
- //GB2312 转为 UTF-8
- void GB2312ToUTF_8(string& pOut, const char *pText, int pLen)
- {
- char buf[4];
- memset(buf, 0, 4);
- pOut.clear();
- int i = 0;
- while (i < pLen)
- {
- //如果是英文直接复制就可以;
- if (pText[i] >= 0)
- {
- char asciistr[2] = { 0 };
- asciistr[0] = (pText[i++]);
- pOut.append(asciistr);
- }
- else
- {
- WCHAR pbuffer[2] = {0};
- MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, pText + i, 2, pbuffer, 1);
- UNICODE2UTF8(pbuffer, buf, 4);
- pOut.append(buf);
- i += 2;
- }
- }
- return;
- }
- /************************************************************************/
- /* 函数:[7/26/2016 IT];
- /* 描述:将字符串编码成为GB2312格式的URL;;
- /* 参数:;
- /* [IN] :;
- /* [OUT] :;
- /* [IN/OUT] :;
- /* 返回:void;
- /* 注意:;
- /* 示例:;
- /*
- /* 修改:;
- /* 日期:;
- /* 内容:;
- /************************************************************************/
- string EnCode_GB2312URL(IN CHAR* pText)
- {
- string dd;
- size_t len = strlen(pText);
- for (size_t i = 0; i < len; i++)
- {
- if (isalnum((BYTE)pText[i]))
- {
- char tempbuff[2];
- sprintf_s(tempbuff, "%c", pText[i]);
- dd.append(tempbuff);
- }
- else if (isspace((BYTE)pText[i]))
- {
- dd.append("+");
- }
- else
- {
- char tempbuff[4];
- sprintf_s(tempbuff, "%%%X%X", ((BYTE*)pText)[i] >> 4, ((BYTE*)pText)[i] % 16);
- dd.append(tempbuff);
- }
- }
- return dd;
- }
- void EnCode_GB2312URL(IN CHAR* pText, OUT string& strResult)
- {
- size_t len = strlen(pText);
- for (size_t i = 0; i < len; i++)
- {
- if (isalnum((BYTE)pText[i]))
- {
- char tempbuff[2];
- sprintf_s(tempbuff, "%c", pText[i]);
- strResult.append(tempbuff);
- }
- else if (isspace((BYTE)pText[i]))
- {
- strResult.append("+");
- }
- else
- {
- char tempbuff[4];
- sprintf_s(tempbuff, "%%%X%X", ((BYTE*)pText)[i] >> 4, ((BYTE*)pText)[i] % 16);
- strResult.append(tempbuff);
- }
- }
- }
- /************************************************************************/
- /* 函数:[7/26/2016 IT];
- /* 描述:;
- /* 参数:;
- /* [IN] :;
- /* [OUT] :;
- /* [IN/OUT] :;
- /* 返回:void;
- /* 注意:;
- /* 示例:;
- /*
- /* 修改:;
- /* 日期:;
- /* 内容:;
- /************************************************************************/
- string EnCode_UTF8URL(IN const CHAR* pText)
- {
- string tt = "";
- string dd = "";
- ASCII2UTF8(pText,tt);
- size_t len = tt.length();
- for (size_t i = 0; i < len; i++)
- {
- if (isalnum((BYTE)tt.at(i)))
- {
- char tempbuff[2] = { 0 };
- sprintf_s(tempbuff, "%c", (BYTE)tt.at(i));
- dd.append(tempbuff);
- }
- else if (isspace((BYTE)tt.at(i)))
- {
- dd.append("+");
- }
- else
- {
- char tempbuff[4];
- sprintf_s(tempbuff, "%%%X%X", ((BYTE)tt.at(i)) >> 4, ((BYTE)tt.at(i)) % 16);
- dd.append(tempbuff);
- }
- }
- return dd;
- }
- void EnCode_UTF8URL(IN const CHAR* pText, OUT string& strResult)
- {
- string tt = "";
- ASCII2UTF8(pText,tt);
- size_t len = tt.length();
- for (size_t i = 0; i < len; i++)
- {
- if (isalnum((BYTE)tt.at(i)))
- {
- char tempbuff[2] = { 0 };
- sprintf_s(tempbuff, "%c", (BYTE)tt.at(i));
- strResult.append(tempbuff);
- }
- else if (isspace((BYTE)tt.at(i)))
- {
- strResult.append("+");
- }
- else
- {
- char tempbuff[4];
- sprintf_s(tempbuff, "%%%X%X", ((BYTE)tt.at(i)) >> 4, ((BYTE)tt.at(i)) % 16);
- strResult.append(tempbuff);
- }
- }
- }
- string EnCode_UNICODEURL(IN const CHAR* pText)
- {
- return "";
- }
- /************************************************************************/
- /* 函数:[7/26/2016 IT];
- /* 描述:;
- /* 参数:;
- /* [IN] :;
- /* [OUT] :;
- /* [IN/OUT] :;
- /* 返回:void;
- /* 注意:;
- /* 示例:;
- /*
- /* 修改:;
- /* 日期:;
- /* 内容:;
- /************************************************************************/
- string DeCode_URLGB2312(IN const CHAR* pURLText)
- {
- string output = "";
- char tmp[2];
- int i = 0, idx = 0, ndx, len = strlen(pURLText);
- while (i < len){
- if (pURLText[i] == '%')
- {
- tmp[0] = pURLText[i + 1];
- tmp[1] = pURLText[i + 2];
- output += StrToBin(tmp);
- i = i + 3;
- }
- else if (pURLText[i] == '+')
- {
- output += ' ';
- i++;
- }
- else{
- output += pURLText[i];
- i++;
- }
- }
- return output;
- }
- void DeCode_URLGB2312(IN const CHAR* pURLText, OUT string& strResult)
- {
- char tmp[2];
- int i = 0, idx = 0, ndx, len = strlen(pURLText);
- while (i < len){
- if (pURLText[i] == '%')
- {
- tmp[0] = pURLText[i + 1];
- tmp[1] = pURLText[i + 2];
- strResult += StrToBin(tmp);
- i = i + 3;
- }
- else if (pURLText[i] == '+')
- {
- strResult += ' ';
- i++;
- }
- else{
- strResult += pURLText[i];
- i++;
- }
- }
- }
- /************************************************************************/
- /* 函数:[7/26/2016 IT];
- /* 描述:;
- /* 参数:;
- /* [IN] :;
- /* [OUT] :;
- /* [IN/OUT] :;
- /* 返回:void;
- /* 注意:;
- /* 示例:;
- /*
- /* 修改:;
- /* 日期:;
- /* 内容:;
- /************************************************************************/
- string DeCode_URLUTF8(IN const CHAR* pURLText)
- {
- string output = "";
- string temp = DeCode_URLGB2312(pURLText);
- UTF82ASCII(temp.c_str(), output);
- return output;
- }
- void DeCode_URLUTF8(IN const CHAR* pURLText, OUT string& strResult)
- {
- string temp = DeCode_URLGB2312(pURLText);
- UTF82ASCII(temp.c_str(), strResult);
- }
- /************************************************************************/
- /* 函数:[7/26/2016 IT];
- /* 描述:;
- /* 参数:;
- /* [IN] :;
- /* [OUT] :;
- /* [IN/OUT] :;
- /* 返回:void;
- /* 注意:;
- /* 示例:;
- /*
- /* 修改:;
- /* 日期:;
- /* 内容:;
- /************************************************************************/
- string DeCode_URLUNICODE(IN const CHAR* pURLText)
- {
- string str = pURLText;
- string strResult = "";
- INT nIndex = 0;
- string strTemp = "";
- while ( str.find_first_of("\\u") != string::npos )
- {
- nIndex = str.find_first_of("\\u");
- strResult.append(str.substr(0, nIndex));
- strTemp = str.substr(nIndex + 2, 4);
- str = str.substr(nIndex + 2 +4);
- CHAR szReturn[10] = {0};
- union __UNION_VAR_INT{
- BYTE ch[2];
- int value;
- }unionVarInt;
- unionVarInt.ch[0] = (CharToInt(strTemp.at(2)) << 4) | (CharToInt(strTemp.at(3)) & 0x00FF);
- unionVarInt.ch[1] = (CharToInt(strTemp.at(0)) << 4) | (CharToInt(strTemp.at(1)) & 0x00FF);
- WCHAR szWide[2] = {0};
- szWide[0] = unionVarInt.value;
- UNICODE2ASCII(szWide,szReturn,10);
- strResult.append(szReturn);
- }
- strResult.append(str);
- return strResult;
- }
- void DeCode_URLUNICODE(IN const CHAR* pURLText, OUT string& strResult)
- {
- string str = pURLText;
- INT nIndex = 0;
- string strTemp = "";
- while ( str.find_first_of("\\u") != string::npos )
- {
- nIndex = str.find_first_of("\\u");
- strResult.append(str.substr(0, nIndex));
- strTemp = str.substr(nIndex + 2, 4);
- str = str.substr(nIndex + 2 +4);
- CHAR szReturn[10] = {0};
- union __UNION_VAR_INT{
- BYTE ch[2];
- int value;
- }unionVarInt;
- unionVarInt.ch[0] = (CharToInt(strTemp.at(2)) << 4) | (CharToInt(strTemp.at(3)) & 0x00FF);
- unionVarInt.ch[1] = (CharToInt(strTemp.at(0)) << 4) | (CharToInt(strTemp.at(1)) & 0x00FF);
- WCHAR szWide[2] = {0};
- szWide[0] = unionVarInt.value;
- UNICODE2ASCII(szWide,szReturn,10);
- strResult.append(szReturn);
- }
- strResult.append(str);
- }
- };
|