当前位置: 代码迷 >> J2SE >> 求把字符串替UTF-8的转为GBK的代码
  详细解决方案

求把字符串替UTF-8的转为GBK的代码

热度:199   发布时间:2016-04-24 17:24:55.0
求把字符串为UTF-8的转为GBK的代码
求把字符串为UTF-8的转为GBK的代码

------解决方案--------------------
new String(sourceString.getBytes( "UTF-8 "), "GBK ")
  相关解决方案