gpt4 book ai didi

javascript - 使用 javascript 将 byteArray 转换为 IntegerArray

转载 作者:行者123 更新时间:2023-12-03 04:08:41 25 4
gpt4 key购买 nike

我收到一个字节数组,我想将其转换为整数数组。

这在 NodeJS 中可能吗?

这样做的原因:

代理从串行连接接收值,这是一个字节数组,我尝试对其进行解码并将其放入更具体的 JSON 对象中。

var uint8Message = new Uint8Array(8),
output = [];

uint8Message[0] = 40;
uint8Message[1] = 40;
uint8Message[2] = 40;
uint8Message[3] = 40;
uint8Message[4] = 40;
uint8Message[5] = 40;
uint8Message[6] = 40;
uint8Message[7] = 40;

var counter = 0;
var intermediate = [];
for (var i = 0; i< uint8Message.byteLength; i++) {
if (counter < 4) {
intermediate.push(uint8Message[i]);
}

counter++;
if (counter === 3 ){
output.push(new Uint16Array(intermediate));
counter = 0;
intermediate = [];
}
}

console.log(output);

我正在发送一个 intArray,它从 arduino 转换为 byteArray 到 NodeJS 串行端口处理程序。我想获取数组中的 8 个整数值:

四个引擎的状态和值。

所以最后我想要这个:

[1,89,2,49,1,28,3,89]

这个例子并不完全正确。但上面的例子是为了测试。

最佳答案

仍然不确定我是否正确理解你的问题,但如果你想将 Uint8Array 转换为 Uint32Array 你可以这样做

const uint8Array = new Uint8Array(8).fill(40)
console.log(new Uint32Array(uint8Array.buffer))

如果你需要普通的旧js数组,你可以这样做

const uint8Array = new Uint8Array(8).fill(40)

const intArray = Array.from(new Uint32Array(uint8Array.buffer))

console.log(Array.isArray(intArray))

您可能还想看看什么叫 DataView允许对缓冲区内容进行低级访问。

关于javascript - 使用 javascript 将 byteArray 转换为 IntegerArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44428437/

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