Buffer.writeIntBE()方法用于以big endian格式将给定偏移量的值的指定字节写入缓冲区。它支持高达48位的精度。如果该值是其他值,然后是带符号整数,则其行为是不确定的。
用法:
buffer.writeIntBE( value, offset, byteLength )
参数:此方法接受上述和以下所述的三个参数:
- value:它指定需要写入Buffer对象的编号。
- offset:它指定开始写入缓冲区之前要跳过的字节数。 offset的值为0
- byteLength:它指定要写入缓冲区的字节数。 byteLength的值为0
返回值:它返回一个整数值,该值指定偏移量加上写入的字节数。
范例1:
// Node.js program to demonstrate the
// Buffer.writeIntBE() method
// Creating a buffer of given size
const buffer = Buffer.allocUnsafe(6);
// Write into the buffer
buffer.writeIntBE(0x10, 0, 6);
// Display the Buffer element
console.log(buffer);
// Creating a buffer of given size
const buffer2 = Buffer.allocUnsafe(6);
// Write into the buffer
buffer2.writeIntBE(0x20, 0, 4);
// Display the Buffer element
console.log(buffer2);
输出:
<Buffer 00 00 00 00 00 10> <Buffer 00 00 00 20 69 74>
范例2:
// Node.js program to demonstrate the
// Buffer.writeIntBE() method
// Creating a buffer of given size
const buffer = Buffer.allocUnsafe(6);
// Write into the buffer
buffer.writeIntBE(023, 0, 6);
// Display the Buffer element
console.log(buffer);
// Creating a buffer of given size
const buffer2 = Buffer.allocUnsafe(6);
// Write into the buffer
buffer2.writeIntBE(1010, 0, 6);
// Display the Buffer element
console.log(buffer2);
输出:
<Buffer 00 00 00 00 00 13> <Buffer 00 00 00 00 03 f2>
注意:上面的程序将通过使用node index.js
命令。
参考: https://nodejs.org/api/buffer.html#buffer_buf_writeintbe_value_offset_bytelength
相关用法
注:本文由纯净天空筛选整理自bestharadhakrishna大神的英文原创作品 Node.js | Buffer.writeIntBE() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。