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