关于java:字节数组到Char数组的转换

Byte array to Char Array conversion

本问题已经有最佳答案,请猛点这里访问。

我的字节数组看起来像

1
 byte[] x = { (byte) 0xff , (byte) 0x80  };

如何将其转换为char数组char[]y其中:

1
2
y[0]='f';
y[1] ='f' and so on


这应该帮助你。P></

1
2
3
byte[] data = { (byte) 0xff , (byte) 0x80  };
String text = new String(data,"UTF-8");
char[] chars = text.toCharArray();