如何在数组中转换缓冲区?
缓冲区(十六进制值):
myBuffer = <Buffer 48 65 6c 6c 6F >
我想要一个这样的变量类型数组:
myArray = [48, 65, 6c, 6c, 6F] // Hex values
or
myArray = [72, 101, 108, 108, 111] // Decimal values
重要:我不想使用for
循环遍历缓冲区的字节到字节。我想知道是否存在将Buffer转换为Array的本地方法。
答案 0 :(得分:1)
好像您是在指Node.js缓冲区。在这种情况下,您可以简单地执行以下操作:
var buf = new Buffer([72,101,108,108,111]) //<Buffer 48 65 6c 6c 6f>
var arr = Array.prototype.slice.call(buf) //[72,101,108,108,111]
答案 1 :(得分:0)
如果您在谈论数组缓冲区,请尝试以下方法:
function ab2str(buf) {
return String.fromCharCode.apply(null, new Uint16Array(buf));
}
如果您正在谈论nodejs缓冲区对象,请尝试以下操作:
let bufferOne = Buffer.from('This is a buffer example.');
console.log(bufferOne);
// Output: <Buffer 54 68 69 73 20 69 73 20 61 20 62 75 66 66 65 72 20 65 78 61 6d 70 6c 65 2e>
let json = JSON.stringify(bufferOne);
console.log(json);
// Output: {"type":"Buffer","data": [84,104,105,115,32,105,115,32,97,32,98,117,102,102,101,114,32,101,120,97,109,112,108,101,46]}
json = JSON.parse(json);
json.data.forEach(e=> console.log(e.toString(16)));
// Output: 54 68 69 73 20 69 73 20 61 20 62 75 66 66 65 72 20 65 78 61 6d 70 6c 65 2e