我是靠谱客的博主 称心鲜花,最近开发中收集的这篇文章主要介绍Windows下 GBK与UTF8之间的互相转换(C++),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.GBK转UTF8

std::string GBKToUTF8(const char* str_GBK)
{
	int len = MultiByteToWideChar(CP_ACP, 0, str_GBK, -1, NULL, 0);
	wchar_t* wstr = new wchar_t[len + 1];
	memset(wstr, 0, len + 1);
	MultiByteToWideChar(CP_ACP, 0, str_GBK, -1, wstr, len);
	len = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, NULL, 0, NULL, NULL);
	char* str = new char[len + 1];
	memset(str, 0, len + 1);
	WideCharToMultiByte(CP_UTF8, 0, wstr, -1, str, len, NULL, NULL);
	std::string strTemp = str;
	if (wstr) delete[] wstr;
	if (str) delete[] str;
	return strTemp;
}

2.UTF8转GBK

std::string UTF8ToGBK(const char* str_UTF8)
{
	int len = MultiByteToWideChar(CP_UTF8, 0, str_UTF8, -1, NULL, 0);
	wchar_t* wsz_GBK = new wchar_t[len + 1];
	memset(wsz_GBK, 0, len * 2 + 2);
	MultiByteToWideChar(CP_UTF8, 0, str_UTF8, -1, wsz_GBK, len);
	len = WideCharToMultiByte(CP_ACP, 0, wsz_GBK, -1, NULL, 0, NULL, NULL);
	char* sz_GBK = new char[len + 1];
	memset(sz_GBK, 0, len + 1);
	WideCharToMultiByte(CP_ACP, 0, wsz_GBK, -1, sz_GBK, len, NULL, NULL);
	std::string str_temp(sz_GBK);
	if (wsz_GBK) delete[] wsz_GBK;
	if (sz_GBK) delete[] sz_GBK;
	return str_temp;
}

最后

以上就是称心鲜花为你收集整理的Windows下 GBK与UTF8之间的互相转换(C++)的全部内容,希望文章能够帮你解决Windows下 GBK与UTF8之间的互相转换(C++)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(74)

评论列表共有 0 条评论

立即
投稿
返回
顶部