c++ socket flex 中文 乱码

来源:互联网 发布:app生成器下载软件 编辑:程序博客网 时间:2024/05/01 04:20

c++ socket flex 中文 乱码

c++ gsoap c# webservice 中文 乱码

这两种乱码都是c++与其他语言socket通讯时乱码的错误,解决的关键代码:

//UTF8转成Unicodewchar_t * Ansi22Utf8::UTF8ToUnicode( const char* str ){      int    textlen = 0;      wchar_t * result;      textlen = MultiByteToWideChar( CP_UTF8, 0, str,-1,    NULL,0 );        result = (wchar_t *)malloc((textlen+1)*sizeof(wchar_t));        memset(result,0,(textlen+1)*sizeof(wchar_t));        MultiByteToWideChar(CP_UTF8, 0,str,-1,(LPWSTR)result,textlen );        return    result;  }//Unicode转成ANSIchar * Ansi22Utf8::UnicodeToANSI( const wchar_t *str ){      char * result;      int textlen = 0;      // wide char to multi char      textlen = WideCharToMultiByte( CP_ACP,    0,    str,    -1,    NULL, 0, NULL, NULL );      result =(char *)malloc((textlen+1)*sizeof(char));      memset( result, 0, sizeof(char) * ( textlen + 1 ) );      WideCharToMultiByte( CP_ACP, 0, str, -1, result, textlen, NULL, NULL );      return result;}

参考:感谢http://bbs.csdn.net/topics/390181926中gold_water回答

原创粉丝点击