登录  | 立即注册

游客您好!登录后享受更多精彩

查看: 48|回复: 1

C++ Ansi转Unicode - Unicode转Ansi源码

[复制链接]

171

主题

21

回帖

1048

积分

管理员

积分
1048
发表于 2025-3-24 23:06:02 | 显示全部楼层 |阅读模式

C++ Ansi转Unicode - Unicode转Ansi源码

ANSI转unicode

 //ANSI转unicode
wchar_t* AnsiToUnicode(char *str)
{
        DWORD dwNum = MultiByteToWideChar (CP_ACP, 0, str, -1, NULL, 0);
        wchar_t *pwText;
        pwText = new wchar_t[dwNum];
        if(!pwText)
        {
                delete []pwText;
        }
        MultiByteToWideChar (CP_ACP, 0, str, -1, pwText, dwNum);
        return pwText;
}wchar_t *strUnicode = AnsiToUnicode(str);
OutputDebugStringW(strUnicode);

Unicode转ansi


//Unicode转ansi
wchar_t wText[20] = {L"宽字符转换实例!"};
 DWORD dwNum = WideCharToMultiByte(CP_OEMCP,NULL,wText,-1,NULL,0,NULL,FALSE);
 char *psText;
 psText = new char[dwNum];
 if(!psText)
 {
    delete []psText;
 }
 WideCharToMultiByte (CP_OEMCP,NULL,wText,-1,psText,dwNum,NULL,FALSE);
 delete []psText;

0

主题

65

回帖

204

积分

注册会员

积分
204
发表于 6 天前 | 显示全部楼层
不错,又占了一个沙发!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|断点社区 |网站地图

GMT+8, 2025-4-4 13:56 , Processed in 0.123842 second(s), 23 queries , Yac On.

Powered by XiunoBBS

Copyright © 2001-2025, 断点社区.

快速回复 返回顶部 返回列表