#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));
时间: 2024-10-08 13:37:29