string unicode utf8 ansi之间的转换

/**************************BOOST API********************************************/

std::wstring ANSIToUnicode(const std::string& str)
{
    return boost::locale::conv::to_utf(str, "GBK");
}

std::string UnicodeToANSI(const std::wstring& str)
{
    return boost::locale::conv::from_utf(str, "GBK");
}

std::string UnicodeToUTF8(const std::wstring& str)
{
    return boost::locale::conv::from_utf(str, "UTF-8");
}

std::wstring UTF8ToUnicode(const std::string& str)
{
    return boost::locale::conv::utf_to_utf(str);
}

std::string UTF8ToANSI(const std::string& str)
{
    return boost::locale::conv::utf_to_utf(str);
}

 

/****************************Windows API*****************************************/

std::string UnicodeToUTF8( const std::wstring& str )
{
    char*     pElementText;
    int    iTextLen;
    // wide char to multi char
    iTextLen = WideCharToMultiByte( CP_UTF8,
        0,
        str.c_str(),
        -1,
        NULL,
        0,
        NULL,
        NULL );
    pElementText = new char[iTextLen + 1];
    memset( ( void* )pElementText, 0, sizeof( char ) * ( iTextLen + 1 ) );
    ::WideCharToMultiByte( CP_UTF8,
        0,
        str.c_str(),
        -1,
        pElementText,
        iTextLen,
        NULL,
        NULL );
    std::string strText;
    strText = pElementText;
    delete[] pElementText;
    return strText;
}
std::wstring UTF8ToUnicode( const std::string& str )
{
    int  len = 0;
    len = str.length();
    int  unicodeLen = ::MultiByteToWideChar( CP_UTF8,
        0,
        str.c_str(),
        -1,
        NULL,
        0 );  
    wchar_t *  pUnicode;  
    pUnicode = new  wchar_t[unicodeLen+1];  
    memset(pUnicode,0,(unicodeLen+1)*sizeof(wchar_t));  
    ::MultiByteToWideChar( CP_UTF8,
        0,
        str.c_str(),
        -1,
        (LPWSTR)pUnicode,
        unicodeLen );  
    std::wstring  rt;  
    rt = ( wchar_t* )pUnicode;
    delete  pUnicode; 

    return  rt;  
}
std::wstring ANSIToUnicode( const std::string& str )
{
    int  len = 0;
    len = str.length();
    int  unicodeLen = ::MultiByteToWideChar( CP_ACP,
        0,
        str.c_str(),
        -1,
        NULL,
        0 );  
    wchar_t *  pUnicode;  
    pUnicode = new  wchar_t[unicodeLen+1];  
    memset(pUnicode,0,(unicodeLen+1)*sizeof(wchar_t));  
    ::MultiByteToWideChar( CP_ACP,
        0,
        str.c_str(),
        -1,
        (LPWSTR)pUnicode,
        unicodeLen );  
    std::wstring  rt;  
    rt = ( wchar_t* )pUnicode;
    delete  pUnicode;     return  rt;  
}
std::string UnicodeToANSI( const std::wstring& str )
{
    char*     pElementText;
    int    iTextLen;
    // wide char to multi char
    iTextLen = WideCharToMultiByte( CP_ACP,
        0,
        str.c_str(),
        -1,
        NULL,
        0,
        NULL,
        NULL );
    pElementText = new char[iTextLen + 1];
    memset( ( void* )pElementText, 0, sizeof( char ) * ( iTextLen + 1 ) );
    ::WideCharToMultiByte( CP_ACP,
        0,
        str.c_str(),
        -1,
        pElementText,
        iTextLen,
        NULL,
        NULL );
    std::string strText;
    strText = pElementText;
    delete[] pElementText;
    return strText;
}

你可能感兴趣的:(C++)