Java中将字符串重新编码为另一种编码格式

将字符串重新编码为另一种格式

//将str由UTF-8重新编码为GBK
String str = "312314124";
str = new String(str.getBytes("GBK"),"UTF-8");

你可能感兴趣的:(Java)