如何在nodejs Buffer中存储整数?

时间:2011-11-08 00:25:17

标签: node.js buffer

nodejs Buffer非常流行。但是,它似乎是为了存储字符串。构造函数要么采用字符串,字节数组或要分配的字节大小。

我使用的是Node.js的0.4.12版,我想在缓冲区中存储一个整数。不是integer.toString(),而是整数的实际字节。有没有一种简单的方法可以做到这一点,而不需要遍历整数并进行一些比特琐事?我能做到这一点,但我觉得这是其他人必须在某个时候面临的问题。

3 个答案:

答案 0 :(得分:34)

var buf = new Buffer(4);
buf.writeUInt8(0x3, 0);

http://nodejs.org/docs/v0.6.0/api/buffers.html#buffer.writeUInt8

答案 1 :(得分:2)

由于它不是内置的0.4.12,你可以使用这样的东西:

var integer = 1000;
var length = Math.ceil((Math.log(integer)/Math.log(2))/8); // How much byte to store integer in the buffer
var buffer = new Buffer(length);
var arr = []; // Use to create the binary representation of the integer

while (integer > 0) {
    var temp = integer % 2;
    arr.push(temp);
    integer = Math.floor(integer/2);
}

console.log(arr);

var counter = 0;
var total = 0;

for (var i = 0,j = arr.length; i < j; i++) {
   if (counter % 8 == 0 && counter > 0) { // Do we have a byte full ?
       buffer[length - 1] = total;
       total = 0;
       counter = 0;
       length--;      
   }

   if (arr[i] == 1) { // bit is set
      total += Math.pow(2, counter);
   }
   counter++;
}

buffer[0] = total;

console.log(buffer);


/* OUTPUT :

racar $ node test_node2.js 
[ 0, 0, 0, 1, 0, 1, 1, 1, 1, 1 ]
<Buffer 03 e8>

*/

答案 2 :(得分:2)

使用最新版本的Node会更容易。这是一个2字节无符号整数的示例:

let buf = Buffer.allocUnsafe(2);
buf.writeUInt16BE(1234);  // Big endian

或使用4字节有符号整数:

let buf = Buffer.allocUnsafe(4);  // Init buffer without writing all data to zeros
buf.writeInt32LE(-123456);  // Little endian this time..

在节点v0.5.5中添加了不同的writeInt函数。

请查看以下文档以获得更好的理解:
Buffer
writeUInt16BE/LE
writeUIntBE/LE
allocUnsafe