gpt4 book ai didi

java - 将 int[] 转换为 bytes[] Java

转载 作者:行者123 更新时间:2023-11-29 05:39:25 26 4
gpt4 key购买 nike

我正在尝试将 int[] 转换为 bytes 。它也被转换。

我的转换代码是这样的。

public static byte[] convertIntoBytes(int[] menuIds){
byte[] byteConverted;
ByteBuffer byteBuffer = ByteBuffer.allocate(menuIds.length * 4);
IntBuffer intBuffer = byteBuffer.asIntBuffer();
intBuffer.put(menuIds);
byteConverted = byteBuffer.array();
for (int i = 0; i < 840; i++) {
Log.d("Bytes sfter Insert", ""+byteConverted[i]);
}
return byteConverted;
}

假设我输入一个 int[] = {10,11,15,41,12,8,4,23,5,17,23,36,6}现在我希望字节数组是这样的{10,0,0,0,11,0,0,0,15,0,0,0,41,0,0,0,12,0,0,0,8,0,0,0,4 ,0,0,0,23,0,0,0,5,0,0,0,17,0,0,0,23,0,0,0,36,0,0,0,6,0 ,0,0}

但是得到的字节数组是

{0,0,0,10,0,0,0,11,0,0,0,15,0,0,0,41,0,0,0,12,0,0,0, 8,0,0,0,4,0,0,0,23,0,0,0,5,0,0,0,17,0,0,0,23,0,0,0,36, 0,0,0,6,}

实际上我试图让字节数组从第一个位置开始。

最佳答案

试试这个

...
ByteBuffer byteBuffer = ByteBuffer.allocate(menuIds.length * 4);
byteBuffer.order(ByteOrder.LITTLE_ENDIAN);
...

关于java - 将 int[] 转换为 bytes[] Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18203238/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com