Node.js Buffer.writeInt16LE() 方法
Buffer.writeInt16LE() 方法是Buffer模块中 Buffer 类的内置应用程序编程接口,用于以指定的小端格式将有效的有符号 16 位整数写入指定偏移量的缓冲区。
句法:
Buffer.writeInt16LE( value, offset )
参数:此方法接受上面提到的两个参数,如下所述:
- value:要写入缓冲区的有效有符号 16 位整数。
- offset:表示开始写入缓冲区之前要跳过的字节数。 offset 的值在0 <= offset <= buf.length – 2范围内。偏移量的默认值为 0。
返回值:它返回一个缓冲区,该缓冲区以小端格式在指定偏移量处插入值。
下面的例子说明了 Node.js 中Buffer.writeInt16LE()方法的使用:
示例 1:
// Node.js program to demonstrate the
// Buffer.writeInt16LE() method
// Creating a buffer
const buf = Buffer.allocUnsafe(10);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x0114, 0);
// Display the buffer
console.log(buf);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x1015, 2);
// Display the buffer
console.log(buf);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x0016, 8);
// Display the buffer
console.log(buf);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x0217, 6);
// Display the buffer
console.log(buf);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x0518, 4);
// Display the result
console.log(buf);
输出:
示例 2:
// Node.js program to demonstrate the
// Buffer.writeInt16LE() method
// Creating a buffer
const buf = Buffer.allocUnsafe(6);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x2211, 0);
// Display the buffer
console.log(buf);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x4433, 2);
// Display the buffer
console.log(buf);
// Using Buffer.writeInt16LE() method
buf.writeInt16LE(0x6655, 4);
// Display the buffer
console.log(buf);
输出:
注意:以上程序将使用node index.js
命令编译运行。
参考: https://nodejs.org/dist/latest-v13.x/docs/api/buffer.html#buffer_buf_writeint16le_value_offset