當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。