java怎么把UTF-8字符串转成GBK字符串?
1 回答
PIPIONE
TA贡献1829条经验 获得超9个赞
java不同编码之间进行转换,都需要使用unicode作为中转。
以utf-8转gbk为例,示例代码如下:
1 2 3 4 5 6 7 | String t = "这是一个字符串aaa111"; String utf8 = new String(t.getBytes( "UTF-8")); System.out.println(utf8); String unicode = new String(utf8.getBytes(),"UTF-8"); System.out.println(unicode); String gbk = new String(unicode.getBytes("GBK")); System.out.println(gbk); |
添加回答
举报
0/150
提交
取消