«

Android GBK与UTF-8

时间:2024-3-2 19:54     作者:韩俊     分类: Android


1.远程设备编码格式是GBK,因此

String test = "你好";
send(test.getBytes("GBK"));

2.从远程设备中接收数据

String str = new String(receive().getBytes("UTF-8"), "UTF-8");
tv.setText(str);

用此方法,目前解决奇数中文(最后一个汉字)乱码的问题

参考:http://blog.sina.com.cn/s/blog_3ed30fc4010007u6.html

        <p>版权声明:本文为博主原创文章,未经博主允许不得转载。</p>

标签: android

热门推荐