EncodingConversion.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. #include "StdAfx.h"
  2. #include "EncodingConversion.h"
  3. namespace EncodingConverion
  4. {
  5. WCHAR* ASCII2UNICODE(IN LPCCH lpASCIIStr)
  6. {
  7. if ( lpASCIIStr == NULL )
  8. return NULL;
  9. // 获取宽字符字节数;
  10. int cchWideChar = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, NULL, 0);
  11. if ( cchWideChar == 0)
  12. return NULL;
  13. // 转换成宽字符串;
  14. WCHAR *pWideChar = new WCHAR[cchWideChar + 1];
  15. memset(pWideChar, 0 , sizeof(WCHAR)*(cchWideChar + 1));
  16. int nWriteNum = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, pWideChar, cchWideChar );
  17. if ( nWriteNum != cchWideChar)
  18. {
  19. if (pWideChar)
  20. delete []pWideChar;
  21. return NULL;
  22. }
  23. return pWideChar;
  24. }
  25. BOOL ASCII2UNICODE(IN LPCCH lpASCIIStr, OUT PWCH pUNICODEStr, IN CONST INT& nUNICODEStrLen)
  26. {
  27. if ( lpASCIIStr == NULL )
  28. return FALSE;
  29. // 获取宽字符字节数;
  30. int cchWideChar = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, NULL, 0);
  31. if ( cchWideChar == 0 || cchWideChar >= nUNICODEStrLen)
  32. return FALSE;
  33. // 转换成宽字符串;
  34. memset(pUNICODEStr, 0 , sizeof(WCHAR)*nUNICODEStrLen);
  35. int nWriteNum = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, pUNICODEStr, cchWideChar );
  36. if ( nWriteNum != cchWideChar)
  37. return FALSE;
  38. return TRUE;
  39. }
  40. BOOL ASCII2UNICODE(IN LPCCH lpASCIIStr, OUT wstring &strResult)
  41. {
  42. if ( lpASCIIStr == NULL )
  43. return FALSE;
  44. // 获取宽字符字节数;
  45. int cchWideChar = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, NULL, 0);
  46. if ( cchWideChar == 0 )
  47. return FALSE;
  48. // 转换成宽字符串;
  49. WCHAR *pResult = new WCHAR[cchWideChar];
  50. memset(pResult, 0 , sizeof(WCHAR)*cchWideChar);
  51. int nWriteNum = MultiByteToWideChar(CP_ACP, 0, lpASCIIStr, -1, pResult, cchWideChar );
  52. if ( nWriteNum != cchWideChar)
  53. return FALSE;
  54. strResult = pResult;
  55. if ( pResult )
  56. delete[] pResult;
  57. return TRUE;
  58. }
  59. CHAR* UNICODE2ASCII(IN LPWCH lpUNICODEStr)
  60. {
  61. if ( lpUNICODEStr == NULL )
  62. return NULL;
  63. // 获取多字节字符字节数;
  64. int cbMultiByte = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
  65. if ( cbMultiByte == 0 )
  66. return NULL;
  67. // 转换成多字节字符;
  68. CHAR *pMultiByteStr = new CHAR[cbMultiByte+1];
  69. memset(pMultiByteStr, 0, cbMultiByte + 1);
  70. int nWriteNum = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, pMultiByteStr, cbMultiByte, NULL, NULL);
  71. if (nWriteNum != cbMultiByte)
  72. {
  73. if (pMultiByteStr)
  74. delete []pMultiByteStr;
  75. return NULL;
  76. }
  77. return pMultiByteStr;
  78. }
  79. BOOL UNICODE2ASCII(IN LPWCH lpUNICODEStr, OUT LPCH pASCIIStr, IN CONST INT& nASCIIStrLen)
  80. {
  81. if ( lpUNICODEStr == NULL )
  82. return FALSE;
  83. // 获取多字节字符字节数;
  84. int cbMultiByte = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
  85. if ( cbMultiByte == 0 || cbMultiByte >= nASCIIStrLen )
  86. return FALSE;
  87. // 转换成多字节字符;
  88. memset((void*)pASCIIStr, 0, nASCIIStrLen);
  89. int nWriteNum = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, pASCIIStr, cbMultiByte, NULL, NULL);
  90. if (nWriteNum != cbMultiByte)
  91. {
  92. return FALSE;
  93. }
  94. return TRUE;
  95. }
  96. BOOL UNICODE2ASCII(IN LPWCH lpUNICODEStr, OUT string &strResult)
  97. {
  98. if ( lpUNICODEStr == NULL )
  99. return FALSE;
  100. // 获取多字节字符字节数;
  101. int cbMultiByte = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
  102. if ( cbMultiByte == 0 )
  103. return FALSE;
  104. // 转换成多字节字符;
  105. CHAR* pResult = new CHAR[cbMultiByte];
  106. memset(pResult, 0, cbMultiByte);
  107. int nWriteNum = WideCharToMultiByte(CP_OEMCP, 0, lpUNICODEStr, -1, pResult, cbMultiByte, NULL, NULL);
  108. if (nWriteNum != cbMultiByte)
  109. return FALSE;
  110. strResult = pResult;
  111. if ( pResult )
  112. delete[] pResult;
  113. return TRUE;
  114. }
  115. CHAR* UNICODE2UTF8(IN LPWCH lpUNICODEStr)
  116. {
  117. if ( lpUNICODEStr == NULL )
  118. return NULL;
  119. // 获取多字节字符字节数;
  120. int cbMultiByte = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
  121. if ( cbMultiByte == 0 )
  122. return NULL;
  123. // 转换成多字节字符;
  124. CHAR* pMultiByteStr = new CHAR[cbMultiByte+1];
  125. memset(pMultiByteStr, 0, cbMultiByte + 1);
  126. int nWriteNum = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, pMultiByteStr, cbMultiByte, NULL, NULL);
  127. if (nWriteNum != cbMultiByte)
  128. {
  129. if (pMultiByteStr)
  130. delete []pMultiByteStr;
  131. return NULL;
  132. }
  133. return pMultiByteStr;
  134. }
  135. BOOL UNICODE2UTF8(IN LPWCH lpUNICODEStr, OUT LPCH pUTF8Str, IN CONST INT& nUTF8StrLen)
  136. {
  137. if ( lpUNICODEStr == NULL )
  138. return FALSE;
  139. // 获取多字节字符字节数;
  140. int cbMultiByte = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
  141. if ( cbMultiByte == 0 || cbMultiByte >= nUTF8StrLen )
  142. return FALSE;
  143. // 转换成多字节字符;
  144. memset(pUTF8Str, 0, nUTF8StrLen);
  145. int nWriteNum = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, pUTF8Str, cbMultiByte, NULL, NULL);
  146. if (nWriteNum != cbMultiByte)
  147. {
  148. return FALSE;
  149. }
  150. return TRUE;
  151. }
  152. BOOL UNICODE2UTF8(IN LPWCH lpUNICODEStr, OUT string &strResult)
  153. {
  154. if ( lpUNICODEStr == NULL )
  155. return FALSE;
  156. // 获取多字节字符字节数;
  157. int cbMultiByte = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, NULL, 0, NULL, NULL);
  158. if ( cbMultiByte == 0 )
  159. return FALSE;
  160. // 转换成多字节字符;
  161. CHAR *pResult = new CHAR[cbMultiByte];
  162. memset(pResult, 0, cbMultiByte);
  163. int nWriteNum = WideCharToMultiByte(CP_UTF8, 0, lpUNICODEStr, -1, pResult, cbMultiByte, NULL, NULL);
  164. if (nWriteNum != cbMultiByte)
  165. return FALSE;
  166. strResult = pResult;
  167. if ( pResult )
  168. delete[] pResult;
  169. return TRUE;
  170. }
  171. CHAR* ASCII2UTF8(IN LPCCH lpASCIIStr)
  172. {
  173. // 将ASCII字符串转成UNICODE字符串;
  174. WCHAR* pWideChar = ASCII2UNICODE(lpASCIIStr);
  175. if ( pWideChar == NULL )
  176. return NULL;
  177. // 再将UICODE转成UTF8;
  178. CHAR* pUTF8 = UNICODE2UTF8(pWideChar);
  179. if ( pWideChar )
  180. delete []pWideChar;
  181. return pUTF8;
  182. }
  183. BOOL ASCII2UTF8(IN LPCCH lpASCIIStr, OUT LPCH pUTF8Str, IN CONST INT& nUTF8StrLen)
  184. {
  185. // 将ASCII字符串转成UNICODE字符串;
  186. WCHAR* pWideChar = ASCII2UNICODE(lpASCIIStr);
  187. if ( pWideChar == NULL )
  188. return FALSE;
  189. // 再将UICODE转成UTF8;
  190. BOOL bResult = UNICODE2UTF8(pWideChar, pUTF8Str, nUTF8StrLen);
  191. if ( pWideChar )
  192. delete []pWideChar;
  193. return bResult;
  194. }
  195. BOOL ASCII2UTF8(IN LPCCH lpASCIIStr, OUT string &strResult)
  196. {
  197. // 将ASCII字符串转成UNICODE字符串;
  198. WCHAR* pWideChar = ASCII2UNICODE(lpASCIIStr);
  199. if ( pWideChar == NULL )
  200. return FALSE;
  201. // 再将UICODE转成UTF8;
  202. BOOL bResult = UNICODE2UTF8(pWideChar, strResult);
  203. if ( pWideChar )
  204. delete []pWideChar;
  205. return bResult;
  206. }
  207. WCHAR* UTF82UNICODE(IN LPCCH lpUTF8)
  208. {
  209. if ( lpUTF8 == NULL )
  210. return NULL;
  211. // 获取unicode字符数;
  212. int cchWideChar = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, NULL, 0);
  213. if ( cchWideChar == 0)
  214. return NULL;
  215. // 转换成宽字符串;
  216. WCHAR *pWideChar = new WCHAR[cchWideChar + 1];
  217. memset(pWideChar, 0 , sizeof(WCHAR)*(cchWideChar + 1));
  218. int nWriteNum = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, pWideChar, cchWideChar );
  219. if ( nWriteNum != cchWideChar)
  220. {
  221. if (pWideChar)
  222. delete []pWideChar;
  223. return NULL;
  224. }
  225. return pWideChar;
  226. }
  227. BOOL UTF82UNICODE(IN LPCCH lpUTF8, OUT PWCH pUNICODEStr, IN CONST INT& nUNICODEStrLen)
  228. {
  229. if ( lpUTF8 == NULL )
  230. return FALSE;
  231. // 获取宽字符字节数;
  232. int cchWideChar = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, NULL, 0);
  233. if ( cchWideChar == 0 || cchWideChar >= nUNICODEStrLen)
  234. return FALSE;
  235. // 转换成宽字符串;
  236. memset(pUNICODEStr, 0 , sizeof(WCHAR)*nUNICODEStrLen);
  237. int nWriteNum = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, pUNICODEStr, cchWideChar );
  238. if ( nWriteNum != cchWideChar)
  239. return FALSE;
  240. return TRUE;
  241. }
  242. BOOL UTF82UNICODE(IN LPCCH lpUTF8, OUT wstring &strResult)
  243. {
  244. if ( lpUTF8 == NULL )
  245. return FALSE;
  246. // 获取宽字符字节数;
  247. int cchWideChar = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, NULL, 0);
  248. if ( cchWideChar == 0 )
  249. return FALSE;
  250. // 转换成宽字符串;
  251. WCHAR* pResult = new WCHAR[cchWideChar];
  252. memset(pResult, 0 , sizeof(WCHAR)*cchWideChar);
  253. int nWriteNum = MultiByteToWideChar(CP_UTF8, 0, lpUTF8, -1, pResult, cchWideChar );
  254. if ( nWriteNum != cchWideChar)
  255. return FALSE;
  256. strResult = pResult;
  257. if ( pResult )
  258. delete[] pResult;
  259. return TRUE;
  260. }
  261. CHAR* UTF82ASCII(IN LPCCH lpUTF8)
  262. {
  263. // 将ASCII字符串转成UNICODE字符串;
  264. WCHAR* pWideChar = UTF82UNICODE(lpUTF8);
  265. if ( pWideChar == NULL )
  266. return NULL;
  267. // 再将UICODE转成UTF8;
  268. CHAR* pUTF8 = UNICODE2ASCII(pWideChar);
  269. if ( pWideChar )
  270. delete []pWideChar;
  271. return pUTF8;
  272. }
  273. BOOL UTF82ASCII(IN LPCCH lpUTF8, OUT LPCH pASCIIStr, IN CONST INT& nASCIIStrLen)
  274. {
  275. // 将ASCII字符串转成UNICODE字符串;
  276. WCHAR* pWideChar = UTF82UNICODE(lpUTF8);
  277. if ( pWideChar == NULL )
  278. return FALSE;
  279. // 再将UICODE转成UTF8;
  280. BOOL bResult = UNICODE2ASCII(pWideChar, pASCIIStr, nASCIIStrLen);
  281. if ( pWideChar )
  282. delete []pWideChar;
  283. return bResult;
  284. }
  285. BOOL UTF82ASCII(IN LPCCH lpUTF8, OUT string &strResult)
  286. {
  287. // 将ASCII字符串转成UNICODE字符串;
  288. WCHAR* pWideChar = UTF82UNICODE(lpUTF8);
  289. if ( pWideChar == NULL )
  290. return FALSE;
  291. // 再将UICODE转成UTF8;
  292. BOOL bResult = UNICODE2ASCII(pWideChar, strResult);
  293. if ( pWideChar )
  294. delete []pWideChar;
  295. return bResult;
  296. }
  297. //做为解Url使用
  298. char CharToInt(char ch)
  299. {
  300. if (ch >= '0' && ch <= '9')return (char)(ch - '0');
  301. if (ch >= 'a' && ch <= 'f')return (char)(ch - 'a' + 10);
  302. if (ch >= 'A' && ch <= 'F')return (char)(ch - 'A' + 10);
  303. return -1;
  304. }
  305. char StrToBin(IN char (&str)[2])
  306. {
  307. char tempWord[2];
  308. char chn;
  309. tempWord[0] = CharToInt(str[0]); //make the B to 11 -- 00001011
  310. tempWord[1] = CharToInt(str[1]); //make the 0 to 0 -- 00000000
  311. chn = (tempWord[0] << 4) | tempWord[1]; //to change the BO to 10110000
  312. return chn;
  313. }
  314. //GB2312 转为 UTF-8
  315. void GB2312ToUTF_8(string& pOut, const char *pText, int pLen)
  316. {
  317. char buf[4];
  318. memset(buf, 0, 4);
  319. pOut.clear();
  320. int i = 0;
  321. while (i < pLen)
  322. {
  323. //如果是英文直接复制就可以;
  324. if (pText[i] >= 0)
  325. {
  326. char asciistr[2] = { 0 };
  327. asciistr[0] = (pText[i++]);
  328. pOut.append(asciistr);
  329. }
  330. else
  331. {
  332. WCHAR pbuffer[2] = {0};
  333. MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, pText + i, 2, pbuffer, 1);
  334. UNICODE2UTF8(pbuffer, buf, 4);
  335. pOut.append(buf);
  336. i += 2;
  337. }
  338. }
  339. return;
  340. }
  341. /************************************************************************/
  342. /* 函数:[7/26/2016 IT];
  343. /* 描述:将字符串编码成为GB2312格式的URL;;
  344. /* 参数:;
  345. /* [IN] :;
  346. /* [OUT] :;
  347. /* [IN/OUT] :;
  348. /* 返回:void;
  349. /* 注意:;
  350. /* 示例:;
  351. /*
  352. /* 修改:;
  353. /* 日期:;
  354. /* 内容:;
  355. /************************************************************************/
  356. string EnCode_GB2312URL(IN CHAR* pText)
  357. {
  358. string dd;
  359. size_t len = strlen(pText);
  360. for (size_t i = 0; i < len; i++)
  361. {
  362. if (isalnum((BYTE)pText[i]))
  363. {
  364. char tempbuff[2];
  365. sprintf_s(tempbuff, "%c", pText[i]);
  366. dd.append(tempbuff);
  367. }
  368. else if (isspace((BYTE)pText[i]))
  369. {
  370. dd.append("+");
  371. }
  372. else
  373. {
  374. char tempbuff[4];
  375. sprintf_s(tempbuff, "%%%X%X", ((BYTE*)pText)[i] >> 4, ((BYTE*)pText)[i] % 16);
  376. dd.append(tempbuff);
  377. }
  378. }
  379. return dd;
  380. }
  381. void EnCode_GB2312URL(IN CHAR* pText, OUT string& strResult)
  382. {
  383. size_t len = strlen(pText);
  384. for (size_t i = 0; i < len; i++)
  385. {
  386. if (isalnum((BYTE)pText[i]))
  387. {
  388. char tempbuff[2];
  389. sprintf_s(tempbuff, "%c", pText[i]);
  390. strResult.append(tempbuff);
  391. }
  392. else if (isspace((BYTE)pText[i]))
  393. {
  394. strResult.append("+");
  395. }
  396. else
  397. {
  398. char tempbuff[4];
  399. sprintf_s(tempbuff, "%%%X%X", ((BYTE*)pText)[i] >> 4, ((BYTE*)pText)[i] % 16);
  400. strResult.append(tempbuff);
  401. }
  402. }
  403. }
  404. /************************************************************************/
  405. /* 函数:[7/26/2016 IT];
  406. /* 描述:;
  407. /* 参数:;
  408. /* [IN] :;
  409. /* [OUT] :;
  410. /* [IN/OUT] :;
  411. /* 返回:void;
  412. /* 注意:;
  413. /* 示例:;
  414. /*
  415. /* 修改:;
  416. /* 日期:;
  417. /* 内容:;
  418. /************************************************************************/
  419. string EnCode_UTF8URL(IN const CHAR* pText)
  420. {
  421. string tt = "";
  422. string dd = "";
  423. ASCII2UTF8(pText,tt);
  424. size_t len = tt.length();
  425. for (size_t i = 0; i < len; i++)
  426. {
  427. if (isalnum((BYTE)tt.at(i)))
  428. {
  429. char tempbuff[2] = { 0 };
  430. sprintf_s(tempbuff, "%c", (BYTE)tt.at(i));
  431. dd.append(tempbuff);
  432. }
  433. else if (isspace((BYTE)tt.at(i)))
  434. {
  435. dd.append("+");
  436. }
  437. else
  438. {
  439. char tempbuff[4];
  440. sprintf_s(tempbuff, "%%%X%X", ((BYTE)tt.at(i)) >> 4, ((BYTE)tt.at(i)) % 16);
  441. dd.append(tempbuff);
  442. }
  443. }
  444. return dd;
  445. }
  446. void EnCode_UTF8URL(IN const CHAR* pText, OUT string& strResult)
  447. {
  448. string tt = "";
  449. ASCII2UTF8(pText,tt);
  450. size_t len = tt.length();
  451. for (size_t i = 0; i < len; i++)
  452. {
  453. if (isalnum((BYTE)tt.at(i)))
  454. {
  455. char tempbuff[2] = { 0 };
  456. sprintf_s(tempbuff, "%c", (BYTE)tt.at(i));
  457. strResult.append(tempbuff);
  458. }
  459. else if (isspace((BYTE)tt.at(i)))
  460. {
  461. strResult.append("+");
  462. }
  463. else
  464. {
  465. char tempbuff[4];
  466. sprintf_s(tempbuff, "%%%X%X", ((BYTE)tt.at(i)) >> 4, ((BYTE)tt.at(i)) % 16);
  467. strResult.append(tempbuff);
  468. }
  469. }
  470. }
  471. string EnCode_UNICODEURL(IN const CHAR* pText)
  472. {
  473. return "";
  474. }
  475. /************************************************************************/
  476. /* 函数:[7/26/2016 IT];
  477. /* 描述:;
  478. /* 参数:;
  479. /* [IN] :;
  480. /* [OUT] :;
  481. /* [IN/OUT] :;
  482. /* 返回:void;
  483. /* 注意:;
  484. /* 示例:;
  485. /*
  486. /* 修改:;
  487. /* 日期:;
  488. /* 内容:;
  489. /************************************************************************/
  490. string DeCode_URLGB2312(IN const CHAR* pURLText)
  491. {
  492. string output = "";
  493. char tmp[2];
  494. int i = 0, idx = 0, ndx, len = strlen(pURLText);
  495. while (i < len){
  496. if (pURLText[i] == '%')
  497. {
  498. tmp[0] = pURLText[i + 1];
  499. tmp[1] = pURLText[i + 2];
  500. output += StrToBin(tmp);
  501. i = i + 3;
  502. }
  503. else if (pURLText[i] == '+')
  504. {
  505. output += ' ';
  506. i++;
  507. }
  508. else{
  509. output += pURLText[i];
  510. i++;
  511. }
  512. }
  513. return output;
  514. }
  515. void DeCode_URLGB2312(IN const CHAR* pURLText, OUT string& strResult)
  516. {
  517. char tmp[2];
  518. int i = 0, idx = 0, ndx, len = strlen(pURLText);
  519. while (i < len){
  520. if (pURLText[i] == '%')
  521. {
  522. tmp[0] = pURLText[i + 1];
  523. tmp[1] = pURLText[i + 2];
  524. strResult += StrToBin(tmp);
  525. i = i + 3;
  526. }
  527. else if (pURLText[i] == '+')
  528. {
  529. strResult += ' ';
  530. i++;
  531. }
  532. else{
  533. strResult += pURLText[i];
  534. i++;
  535. }
  536. }
  537. }
  538. /************************************************************************/
  539. /* 函数:[7/26/2016 IT];
  540. /* 描述:;
  541. /* 参数:;
  542. /* [IN] :;
  543. /* [OUT] :;
  544. /* [IN/OUT] :;
  545. /* 返回:void;
  546. /* 注意:;
  547. /* 示例:;
  548. /*
  549. /* 修改:;
  550. /* 日期:;
  551. /* 内容:;
  552. /************************************************************************/
  553. string DeCode_URLUTF8(IN const CHAR* pURLText)
  554. {
  555. string output = "";
  556. string temp = DeCode_URLGB2312(pURLText);
  557. UTF82ASCII(temp.c_str(), output);
  558. return output;
  559. }
  560. void DeCode_URLUTF8(IN const CHAR* pURLText, OUT string& strResult)
  561. {
  562. string temp = DeCode_URLGB2312(pURLText);
  563. UTF82ASCII(temp.c_str(), strResult);
  564. }
  565. /************************************************************************/
  566. /* 函数:[7/26/2016 IT];
  567. /* 描述:;
  568. /* 参数:;
  569. /* [IN] :;
  570. /* [OUT] :;
  571. /* [IN/OUT] :;
  572. /* 返回:void;
  573. /* 注意:;
  574. /* 示例:;
  575. /*
  576. /* 修改:;
  577. /* 日期:;
  578. /* 内容:;
  579. /************************************************************************/
  580. string DeCode_URLUNICODE(IN const CHAR* pURLText)
  581. {
  582. string str = pURLText;
  583. string strResult = "";
  584. INT nIndex = 0;
  585. string strTemp = "";
  586. while ( str.find_first_of("\\u") != string::npos )
  587. {
  588. nIndex = str.find_first_of("\\u");
  589. strResult.append(str.substr(0, nIndex));
  590. strTemp = str.substr(nIndex + 2, 4);
  591. str = str.substr(nIndex + 2 +4);
  592. CHAR szReturn[10] = {0};
  593. union __UNION_VAR_INT{
  594. BYTE ch[2];
  595. int value;
  596. }unionVarInt;
  597. unionVarInt.ch[0] = (CharToInt(strTemp.at(2)) << 4) | (CharToInt(strTemp.at(3)) & 0x00FF);
  598. unionVarInt.ch[1] = (CharToInt(strTemp.at(0)) << 4) | (CharToInt(strTemp.at(1)) & 0x00FF);
  599. WCHAR szWide[2] = {0};
  600. szWide[0] = unionVarInt.value;
  601. UNICODE2ASCII(szWide,szReturn,10);
  602. strResult.append(szReturn);
  603. }
  604. strResult.append(str);
  605. return strResult;
  606. }
  607. void DeCode_URLUNICODE(IN const CHAR* pURLText, OUT string& strResult)
  608. {
  609. string str = pURLText;
  610. INT nIndex = 0;
  611. string strTemp = "";
  612. while ( str.find_first_of("\\u") != string::npos )
  613. {
  614. nIndex = str.find_first_of("\\u");
  615. strResult.append(str.substr(0, nIndex));
  616. strTemp = str.substr(nIndex + 2, 4);
  617. str = str.substr(nIndex + 2 +4);
  618. CHAR szReturn[10] = {0};
  619. union __UNION_VAR_INT{
  620. BYTE ch[2];
  621. int value;
  622. }unionVarInt;
  623. unionVarInt.ch[0] = (CharToInt(strTemp.at(2)) << 4) | (CharToInt(strTemp.at(3)) & 0x00FF);
  624. unionVarInt.ch[1] = (CharToInt(strTemp.at(0)) << 4) | (CharToInt(strTemp.at(1)) & 0x00FF);
  625. WCHAR szWide[2] = {0};
  626. szWide[0] = unionVarInt.value;
  627. UNICODE2ASCII(szWide,szReturn,10);
  628. strResult.append(szReturn);
  629. }
  630. strResult.append(str);
  631. }
  632. };