• Node.js Video Tutorials

Node.js - Buffer.readUInt16LE() 方法



NodeJS 的Buffer.readUInt16LE()方法用于从缓冲区中以小端序读取指定偏移量处的无符号16位整数。无符号整数始终为非负数。

一个无符号16位整数可以存储0到65,535范围内的值。

语法

以下是Node.JS Buffer.readUInt16LE() 方法的语法:

buf.readUInt16LE(offset)

参数

  • offset - 指示开始读取位置的偏移量。偏移量大于等于0且小于等于buffer.length-2。默认值为0。

返回值

此方法返回缓冲区中给定偏移量处的16位无符号整数值。

示例

要创建一个缓冲区,我们将使用NodeJS Buffer.from() 方法:

const buffer = Buffer.from([0,15,10,12]);
console.log("buffer stored in memory as", buffer);  
console.log("Reading 16 bit unsigned integer at offset 0:", buffer.readUInt16LE(0));

输出

我们在此方法中使用的偏移量为0。将返回第0位上的16位无符号整数。上面创建的缓冲区长度为4。因此,我们只能使用值为0、1和2的偏移量。如果任何值>2,则会给出错误ERR_OUT_OF_RANGE

buffer stored in memory as <Buffer 00 0f 0a 0c>
Reading 16 bit unsigned integer at offset 0: 3840

示例

让我们创建一个具有16位长度的缓冲区,并查看使用Node.JS Buffer.readUInt16LE()方法返回的值。

const buffer = Buffer.from([0, 1, 2, 3, 4, 5, 6, 7,8, 9, 10, 11,12, 13, 14, 15]);
console.log("Length of buffer is ", buffer.length);  
console.log("Reading at big integer at offset 2:", buffer.readUInt16LE(2));

输出

Length of buffer is 16
Reading at big integer at offset 2: 770

示例

此示例将检查如果偏移量大于buffer.length - 2时出现的错误。让我们创建一个长度为8的缓冲区,这样你可以使用0到6的偏移量。在下面的示例中,我们使用偏移量7,因此它将抛出错误,如输出所示。

const buffer = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);
console.log("buffer length is ", buffer.length);  
console.log("Reading at big integer at offset 7:", buffer.readUInt16LE(7));

输出

buffer length is 8
internal/buffer.js:58
  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 <= 7. ReceivePS C:\nodejsProject> node src/testbuffer.js
buffer length is  8
internal/buffer.js:58
   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 <= 6. Received 7
   at boundsError (internal/buffer.js:58:9)
   at Buffer.readUInt16LE (internal/buffer.js:139:5)
   at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:3:59)
   at Module._compile (internal/modules/cjs/loader.js:816:30)
   at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
   at Module.load (internal/modules/cjs/loader.js:685:32)
   at Function.Module._load (internal/modules/cjs/loader.js:620:12)
   at Function.Module.runMain (internal/modules/cjs/loader.js:877:12)
   at internal/main/run_main_module.js:21:11
nodejs_buffer_module.htm
广告