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


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


Buffer.writeInt16LE()方法是Buffer模块中Buffer类的内置应用程序编程接口,用于编写有效的带符号16位整数,以指定的偏移量以指定的小端字节序格式进行缓存。

用法:

Buffer.writeInt16LE( value, offset )

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


  • value:要写入缓冲区的有效带符号的16位整数。
  • offset:它表示开始写入缓冲区之前要跳过的字节数。 offset的值在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); 

输出:

<Buffer 14 01 9b 02 00 00 00 00 a8 79>
<Buffer 14 01 15 10 00 00 00 00 a8 79>
<Buffer 14 01 15 10 00 00 00 00 16 00>
<Buffer 14 01 15 10 00 00 17 02 16 00>
<Buffer 14 01 15 10 18 05 17 02 16 00>

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

输出:

<Buffer 11 22 00 00 00 00>
<Buffer 11 22 33 44 00 00>
<Buffer 11 22 33 44 55 66>

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

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



相关用法


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