博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
宽字节与多字节之间的转换
阅读量:6546 次
发布时间:2019-06-24

本文共 1153 字,大约阅读时间需要 3 分钟。

string 与 wstring 相互间的转换

第一种方法

调用Windows的API函数WideCharToMultiByte()函数和MultiByteToWideChar()函数

第二种方法

使用ATL的CA2W类和W2CA类。或使用A2W宏与W2A宏。

第三种方法

跨平台的方法,使用CRT库的mbstowcs()函数和wcstombs()函数,需设置locale

string ws2s(const wstring str){    size_t _DSize = 2*str.size()+1;    char * _Dest = new char[_DSize];    memset(_Dest, 0, _DSize);    WideCharToMultiByte(CP_ACP, NULL, str.c_str(), str.size(), _Dest, _DSize, NULL, NULL);    string result = _Dest;    delete [] _Dest;    return result;}
string ws2s(const wstring str){    size_t _DSize = 2*str.size()+1;    char * _Dest = new char[_DSize];    memset(_Dest, 0, _DSize);    wcstombs(_Dest, str.c_str(), _DSize);    string result = _Dest;    delete [] _Dest;    return result;}

 

string ws2s(const wstring str){ string curLocale = setlocale(LC_ALL, NULL); setlocale(LC_ALL, "chs"); size_t _DSize = 2*str.size()+1; const wchar_t * _Source = str.c_str(); char * _Dest = new char[_DSize]; memset(_Dest, 0, _DSize); wcstombs(_Dest, _Source, _DSize); string result = _Dest; delete [] _Dest; setlocale(LC_ALL, curLocale.c_str()); return result;}

多字节转换为宽字节,原理相同,参照如上代码

转载于:https://www.cnblogs.com/kingdom_0/articles/2823671.html

你可能感兴趣的文章
APMServ 5.2.6 Win7 Apache启动失败,请检查相关配置
查看>>
了解痘痘起因才能彻底告别痘痘烦恼
查看>>
Java 日志 详解
查看>>
openstack虚拟化技术和镜像制作
查看>>
一个超棒的jQuery通知栏插件 - jBar
查看>>
分享17个漂亮的电子商务网站
查看>>
JavaScript实用手册
查看>>
dpkg参数
查看>>
AS3!INT
查看>>
memcache--mysql测试
查看>>
拷贝构造函数、拷贝函数、析构函数
查看>>
实战CGLib系列之proxy篇(一):方法拦截MethodInterceptor
查看>>
php 字符串截取
查看>>
ttcn-3
查看>>
00.java虚拟机的基本结构概念
查看>>
ThreadLocal使用出现的问题
查看>>
连接池并发的实现原理
查看>>
创建Pch预编译文件
查看>>
阿里云Centos配置iptables防火墙
查看>>
UML类图几种关系的总结
查看>>