gpt4 book ai didi

java - 将字节数组转换为 Java 中的 int 数组,通过 ByteBuffer 到 IntBuffer,而不截断

转载 作者:行者123 更新时间:2023-11-30 06:57:39 25 4
gpt4 key购买 nike

这里还有其他关于此主题的问题,其中大部分涉及 ByteBufferasIntBuffer。但是,我还没有看到任何关于如何在转换为 IntBuffer 时防止值被截断的解释。

例子:

byte[] plainTextBytes = "Hello World".getBytes();

// Truncates the limit from 11 to 2
IntBuffer intBuffer = ByteBuffer.wrap( plainTextBytes ).asIntBuffer();

// Results in java.lang.UnsupportedOperationException
int[] plainTextInt = intBuffer.array();

我有一个 RC4 加密算法,它采用 int[] 类型的明文参数。因此,我需要将明文转换为 int[]ByteBuffer 和使用 asIntBuffer 的问题是明文被截断,因为限制是独立的(在我的示例中从 11 变为 2)。

要么我做错了什么,要么 ByteBuffer 不是去这里的方法。

如有任何帮助,我们将不胜感激。谢谢。

最佳答案

您好,如果您不需要使用 IntBuffer,您可以试试这个。

byte[] plainTextBytes = "Hello World".getBytes();

int[] ints = new int[plainTextBytes.length];

for(int i = 0; i < ints.length; i++){
ints[i] = plainTextBytes[i];
}

您基本上可以将字节直接转换为整数。

关于java - 将字节数组转换为 Java 中的 int 数组,通过 ByteBuffer 到 IntBuffer,而不截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33351480/

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