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


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


Buffer.writeInt16BE()方法是Buffer模块中Buffer类的内置应用程序编程接口,用于将整数值写入具有big-endian格式的指定偏移处的缓冲区。整数值应为有效的带符号16位整数。如果该值超出带符号的16位整数范围,则将引发错误。整数值被解释并写入为两个补码有符号整数。

用法:

Buffer.writeInt16BE( value, offset )

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


  • value:它是一个16位带符号整数,必须将其写入缓冲区。
  • offset:它是一个整数值,即开始写入缓冲区之前要跳过的字节数。 offset的值在buf.length-2处为0。它是可选参数,默认值为0。

返回值:它返回一个整数值,该值是偏移量与写入的字节数之和。

以下示例说明了如何在Node.js中使用buf.writeInt16BE()方法:

范例1:

// Node.js program to demonstrate the    
// Buffer.writeInt16BE() Method  
    
// Allocate a buffer 
const buf = Buffer.allocUnsafe(2); 
  
// Writing the value to the buffer 
buf.writeInt16BE(0x7bca); 
  
// Display the buffer value 
console.log(buf);

输出:

<Buffer 7b ca>

范例2:

// Node.js program to demonstrate the    
// Buffer.writeInt16BE() Method  
    
// Allocate a buffer 
const buf = Buffer.allocUnsafe(4); 
  
// Writing the value to the buffer 
// from 0 offset 
buf.writeInt16BE(0x7bca, 0); 
  
// Writing the value to the buffer 
// from 2 offset 
buf.writeInt16BE(0x7fff, 2); 
  
// Display the result 
console.log(buf); 

输出:

<Buffer 7b ca 7f ff>

范例3:

// Node.js program to demonstrate the    
// Buffer.writeInt16BE() Method  
    
// Allocate a buffer 
const buf = Buffer.allocUnsafe(4); 
  
// Writing the value to the buffer 
// from 0 offset 
buf.writeInt16BE(0x7bca, 0); 
  
// Writing the value to the buffer 
// from 2 offset 
buf.writeInt16BE(0x7fff, 3); 
  
// Display the result 
console.log(buf); 

输出:

internal/buffer.js:72
  throw new ERR_OUT_OF_RANGE(type || 'offset',
  ^
RangeError [ERR_OUT_OF_RANGE]:The value of "offset" is out of range.
It must be >= 0 and 

Reference: https://nodejs.org/api/buffer.html#buffer_buf_writeint16be_value_offset



相关用法


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