Java中的一个字符是Unicode代码单元,被视为无符号数字。所以如果你执行c =(char)b,你得到的值是2 ^ 16 – 56或65536 – 56。
或者更准确地说,首先使用扩展转换将该字节转换为无符号整数,值0xFFFFFFC8使用符号扩展,然后将其缩小为0xFFC8,这是正数65480。
从语言规范:
First, the byte is converted to an int via widening primitive conversion (§5.1.2),
and then the resulting int is converted to a char by narrowing primitive conversion
(§5.1.3).
要获得正确的点,使用char c =(char)(b& 0xFF),它首先通过使用掩码将b的字节值转换为正整数200,将转换后的前24位置零:0xFFFFFFC8变为0x000000C8或正小数位数200。
以上是直接说明在字节,int和char基元类型之间转换过程中会发生什么。
如果要从字节中对字符进行编码/解码,请使用Charset,CharsetEncoder,CharsetDecoder或方便的方法之一,例如新的String(byte [] bytes,Charset charset)或String#toBytes(Charset charset)。您可以从StandardCharsets获取字符集(如UTF-8或Windows-1252)。