gpt4 book ai didi

java - 将 byte 转换为 int,反之亦然

转载 作者:行者123 更新时间:2023-11-29 03:58:12 25 4
gpt4 key购买 nike

有人知道如何在 java 中将大量字节(例如 1000 字节)转换为 int/long 等吗?

最佳答案

你可以使用循环

byte[] bytes =
int[] ints = new int[bytes.length];
for(int i=0;i<bytes.length;i++)
ints[i] = bytes[i];

1000 个元素可能最多需要 10 微秒。

关于java - 将 byte 转换为 int,反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5119920/

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