标签:
#include <atlbase.h>
代码如下:
//使用ATL的W2A和A2W宏必须使用USES_CONVERSION
USES_CONVERSION;
//Unicode字符串
wchar_t* wszText=L"1.Unicode字符转换为ANSI;";
printf("%s\n",W2A(wszText));
//用wprintf输出非英文字符,需要设置当前的地域信息
setlocale(LC_ALL,"chs");
//ANSI字符串(ANSI:American National Standards Institute)
//中文内码MBCS:Multi-Byte character sets,英文内码SBCS:Single-Byte character sets)
char* szText="2.ANSI字符转换成Unicode.";
wprintf(L"%s\n",A2W(szText));
用ATL的W2A和A2W宏转换Unicode与ANSI字符串
标签:
原文地址:http://www.cnblogs.com/dgx/p/5491513.html