当前位置: 代码迷 >> Eclipse >> 怎么将UTF-8编码的字符串用GB18030输出
  详细解决方案

怎么将UTF-8编码的字符串用GB18030输出

热度:50   发布时间:2016-04-23 12:27:28.0
如何将UTF-8编码的字符串用GB18030输出?
如题,多谢了。

------解决方案--------------------
转码!
得到的数据转换成字节
eg:
String s = InterFace();
String str = new String(s.getBytes("iso-8859-1"),"GB18030");