解决c++ 获取网站json串里中文 为Unicode码时乱码的方法

从网站上获取的json数据为"city":"\u5ef6\u5e86",这个是中文自动转为Unicode码,然后用json::Reader 去读取的时候就出现乱码了。 最后修改了json_read.cpp里的codePointToUTF8函数,然后json.cpp就能支持Unicode字符串了。

这个是原函数
/// Converts a unicode code-point to UTF-8.
static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) {
JSONCPP_STRING result;

// based on description from http://en.wikipedia.org/wiki/UTF-8

if (cp <= 0x7f) {
result.resize(1);
result[0] = static_cast(cp);
} else if (cp <= 0x7FF) {
result.resize(2);
result[1] = static_cast(0x80 | (0x3f & cp));
result[0] = static_cast(0xC0 | (0x1f & (cp >> 6)));
} else if (cp <= 0xFFFF) {
result.resize(3);
result[2] = static_cast(0x80 | (0x3f & cp));
result[1] = static_cast(0x80 | (0x3f & (cp >> 6)));
result[0] = static_cast(0xE0 | (0xf & (cp >> 12)));
} else if (cp <= 0x10FFFF) {
result.resize(4);
result[3] = static_cast(0x80 | (0x3f & cp));
result[2] = static_cast(0x80 | (0x3f & (cp >> 6)));
result[1] = static_cast(0x80 | (0x3f & (cp >> 12)));
result[0] = static_cast(0xF0 | (0x7 & (cp >> 18)));
}

return result;
}

这个是修改后的函数
/// Converts a unicode code-point to UTF-8.
static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) {
JSONCPP_STRING result;

// based on description from http://en.wikipedia.org/wiki/UTF-8

if (cp <= 0x7f) {
result.resize(1);
result[0] = static_cast(cp);
} else if (cp <= 0x7FF) {
result.resize(2);
result[1] = static_cast(0x80 | (0x3f & cp));
result[0] = static_cast(0xC0 | (0x1f & (cp >> 6)));
} else if (cp <= 0xFFFF) {
if (cp >= 0x4E00 && cp <= 0x9FA5 || (cp >= 0xF900 && cp <= 0xFA2D))
{
wchar_t src[2] = { 0 };
char dest[5] = { 0 };
src[0] = static_cast<wchar_t>(cp);
std::string curLocale = setlocale(LC_ALL, NULL);
setlocale(LC_ALL, “chs”);
wcstombs_s(NULL, dest, 5, src, 2);
result = dest;
setlocale(LC_ALL, curLocale.c_str());
} else {
result.resize(3);
result[2] = static_cast(0x80 | (0x3f & cp));
result[1] = static_cast(0x80 | (0x3f & (cp >> 6)));
result[0] = static_cast(0xE0 | (0xf & (cp >> 12)));
}
} else if (cp <= 0x10FFFF) {
result.resize(4);
result[3] = static_cast(0x80 | (0x3f & cp));
result[2] = static_cast(0x80 | (0x3f & (cp >> 6)));
result[1] = static_cast(0x80 | (0x3f & (cp >> 12)));
result[0] = static_cast(0xF0 | (0x7 & (cp >> 18)));
}

return result;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值