首页 > 其他 > 详细

Cocos2dx学习: GBK 和 UTF-8的转换

时间:2015-01-23 14:42:24      阅读:456      评论:0      收藏:0      [点我收藏+]
int code_convert(const char *from_charset, const char *to_charset, const char *inbuf, size_t inlen, char *outbuf, size_t outlen)
{
    iconv_t cd;
    const char *temp = inbuf;
    const char **pin = &temp;
    char **pout = &outbuf;
    memset(outbuf, 0, outlen);
    
    cd = iconv_open(to_charset, from_charset);
    if (cd == 0) return -1;
    if (iconv(cd, (char **)pin, &inlen, pout, &outlen) == -1) return -1;
    iconv_close(cd);
    return 0;
}

GBK 转 UTF-8

std::string a2u(const char *inbuf)
{
    size_t inlen = strlen(inbuf);
    char * outbuf = new char[inlen * 2 + 2];
    std::string strRet;
    if (code_convert("GBK", "UTF-8", inbuf, inlen, outbuf, inlen * 2 + 2) == 0)
    {
        strRet = outbuf;
    }
    delete[] outbuf;
    return strRet;
}
UTF-8转 GBK
std::string u2a(const char *inbuf)
{
    size_t inlen = strlen(inbuf);
    char * outbuf = new char[inlen * 2 + 2];
    std::string strRet;
    if (code_convert("UTF-8", "GBK", inbuf, inlen, outbuf, inlen * 2 + 2) == 0)
    {
        strRet = outbuf;
    }
    delete[] outbuf;
    return strRet;
}



Cocos2dx学习: GBK 和 UTF-8的转换

原文:http://blog.csdn.net/jiuaiwo1314/article/details/43054917

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!