标签: arrays type-conversion
我想将byte数组转换为short数组。请给我一个解决方案来找到它。
byte
short
答案 0 :(得分:1)
您可以使用ByteBuffer
byte[] bytes = {}; short[] shorts = new short[bytes.length/2]; ByteBuffer.wrap(bytes).order(ByteOrder.LITTLE_ENDIAN).asShortBuffer().get(shorts);