利用boost做string到wstring转换,以及字符集转换

#include <boost/locale.hpp>
int _tmain(int argc, _TCHAR* argv[])
{
	//std::locale::global(std::locale("utf-8"));
	std::locale::global(std::locale(""));  // 设置全局的C运行库locale  可以针对cout  fstream等单独设置 空表示默认使用当前系统字符集
	std::string strGbk = "天朝的方式开发刻录机卡洛斯分123qwerwer繫";
	std::wstring wstr = boost::locale::conv::to_utf<wchar_t>(strGbk, "gbk");
	std::string strA = boost::locale::conv::from_utf(wstr, "GBK");
	std::cout << strGbk.c_str() << std::endl;
	std::wcout << wstr.c_str() << std::endl;
	std::cout << strA.c_str() << std::endl;
	try
	{
		std::string strBit5;
		strBit5 = boost::locale::conv::between(strA, "big5", "gbk");
		strA = boost::locale::conv::between(strBit5, "GBK", "BIG5");
	}
	catch (std::exception& e)
	{
		std::cout << e.what() << std::endl;
	}
	catch (...)
	{
		std::cout << "..." << std::endl;
	}
	
	std::cout << __FUNCTION__ << std::endl;
	return 0;
}


编译:
g++ main.cpp -lboost_locale

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值