字符编码的转换(ASCII与Utf8)

//转码
//ASCII to Unicode
wstring AtoW(const std::string &str)
{
    //unicode的长度
    int nwLen = MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, nullptr, 0);
    //分配内存
    wchar_t *pUnicode = (wchar_t *)malloc(sizeof(wchar_t) * nwLen);

    if (pUnicode)
    {
        MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, pUnicode, nwLen);
        wstring wstr = pUnicode;
        free(pUnicode);
        return wstr;
    }

    return NULL;
}

//Unicode to ASCII
std::string WtoA(const wstring &wstr)
{
    int naLen = WideCharToMultiByte(CP_ACP, 0, wstr.c_str(), -1, nullptr, 0, nullptr, nullptr);

    char *pAssii = (char *)malloc(sizeof(char) * naLen);

    if (pAssii)
    {
        WideCharToMultiByte(CP_ACP, 0, wstr.c_str(), -1, pAssii, naLen, nullptr, nullptr);
        std::string str = pAssii;
        free(pAssii);
        return str;
    }

    return NULL;
}

//utf8 to Unicode
wstring U2W(const std::string &str)
{
    int nwLen = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, nullptr, 0);
    wchar_t *pUnicode = (wchar_t *)malloc(sizeof(wchar_t) * nwLen);

    if (pUnicode)
    {
        MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, pUnicode, nwLen);
        wstring wstr = pUnicode;
        free(pUnicode);
        return wstr;
    }

    return NULL;
}

//Unicode to utf8
std::string W2U(const wstring &wstr)
{
    int naLen = WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), -1, nullptr, 0, nullptr, nullptr);
    char *pAssii = (char *)malloc(sizeof(char) * naLen);

    if (pAssii)
    {
        WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), -1, pAssii, naLen, nullptr, nullptr);
        std::string str = pAssii;
        free(pAssii);
        return str;
    }

    return NULL;
}

//ASCII to utf8
string A2U(const std::string &str)
{
    return W2U(AtoW(str));
}

//utf8 to ASCII
string U2A(const std::string &str)
{
    return WtoA(U2W(str));
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值