使用libevent处理http请求时,带中文的url乱码

我使用libevent创建了一个http服务器,本地有一些资源。 通过evhttp_set_cb,指定了下载URL。 但当URL中有中文的时候,这个下载地址就无效了。例如:http://10.100.211.237:50000/你好.zip

 

解决方法:

使用evhttp_decode_uri函数对uri路径进行解码,解码出来的是utf-8编码的路径,如果需要将utf-8编码转换成gbk编码,使用如下函数:

#ifdef _WIN32
string UTF8ToGBK(const string& strUTF8)
{
    int len = MultiByteToWideChar(CP_UTF8,0,strUTF8.c_str(),-1,NULL,0);
    wchar_t* wszGBK = new wchar_t[len+1];
    memset(wszGBK,0,(len+1)*sizeof(wchar_t));
    MultiByteToWideChar(CP_UTF8,0,strUTF8.c_str(),-1,wszGBK,len);

    len = WideCharToMultiByte(CP_ACP, 0, wszGBK, -1, NULL, 0, NULL, NULL);
    char *szGBK = new char[len + 1];
    memset(szGBK, 0, len + 1);
    WideCharToMultiByte(CP_ACP,0, wszGBK, -1, szGBK, len, NULL, NULL);

    string strTemp(szGBK);
    delete[]szGBK;
    delete[]wszGBK;

    return strTemp;
}
#endif
 

你可能感兴趣的:(C/C++,libevent,中文乱码)