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 |
我的字节数组看起来像
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 |