今天用安卓通过Socket发送数据到电脑上使用C语言写的服务端,发送英文没有问题,可当把数据改变成中文时,服务端接收到的数据确是乱码。
突然想到,VS的预处理使用的是ANSI编码,而安卓网络数据都是UTF8格式的,这样直接使用printf打印出出来的当然是乱码,所以解决方法就是把UFT8格式的数据转换成ANSI!
避免大家遇到类似问题,少走弯路,我现在把自己找的转码函数贴出来!
C语言文字编码转换函数:
//UTF8转成Unicode wchar_t * 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转成ANSI char * 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; }
这样大家在接收到数据的时候,直接转换成目标编码就可以了
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-25 16:06:00