当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Buffer.writeUInt8()用法及代码示例


Buffer.writeUInt8()方法是Buffer模块中Buffer类的内置应用程序编程接口,用于将值写入到指定偏移量处的缓冲区。该值应为有效的无符号8位整数,否则行为未定义。

用法:

Buffer.writeUInt8( value, offset )

参数:此方法接受上述和以下所述的两个参数:


  • value:要写入缓冲区的无符号整数值。
  • offset:它表示开始写入缓冲区之前要跳过的字节数。偏移量可以在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); 

输出:

<Buffer 14 00 00 00 d6>
<Buffer 14 15 00 00 d6>
<Buffer 14 15 00 00 16>
<Buffer 14 15 00 17 16>
<Buffer 14 15 18 17 16>

范例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); 

输出:

<Buffer 11 e7 31>
<Buffer 11 22 31>
<Buffer 11 22 33>

注意:上面的程序将通过使用node index.js命令。

参考: https://nodejs.org/dist/latest-v13.x/docs/api/buffer.html#buffer_buf_writeuint8_value_offset



相关用法


注:本文由纯净天空筛选整理自Rajnis09大神的英文原创作品 Node.js | Buffer.writeUInt8() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。