• Node.js Video Tutorials

Node.js - Buffer.readUIntBE() 方法



NodeJS 的 Buffer.readUIntBE() 方法将根据字节长度和偏移量读取一定数量的字节,并从使用的缓冲区中返回大端格式的无符号整数。

语法

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

buf.readUIntBE(offset, byteLength)

参数

此方法接受两个参数。下面解释一下。

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

  • **byteLength** - 您要读取的字节数。byteLength 必须介于 0 到 6 之间。

返回值

此方法返回大端格式的无符号整数,该整数在缓冲区中具有给定偏移量值的 bytelength 字节数。

示例

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

const buffer = Buffer.from([11, 12, 13, 14, 15, 16]);
console.log(buffer);
console.log(buffer.readUIntBE(0, 2));

输出

我们与此方法一起使用的偏移量为 0。使用的字节长度为 2。因此,从第 0 个偏移量开始,它将读取字节长度为 2 的字节,并以大端格式返回结果。

<Buffer 0b 0c 0d 0e 0f 10>
2828

示例

在此示例中,让我们打印以十六进制形式获得的输出,如下所示:

const buffer = Buffer.from([11, 12, 13, 14, 15, 16]);
console.log(buffer);
console.log(buffer.readUIntBE(0, 2).toString(16));

输出

<Buffer 0b 0c 0d 0e 0f 10>
b0c

示例

众所周知,我们可以使用从 0 到 buffer.length-bytelength 的偏移量。因此,如果缓冲区长度为 6,并且使用的字节长度为 6,则我们可以将偏移量用作 0。使用大于 0 的值将导致错误:ERR_OUT_OF_RANGE。

const buffer = Buffer.from([11, 12, 13, 14, 15, 16]);
console.log(buffer);
console.log("The buffer length is :"+ buffer.length);
console.log(buffer.readUIntBE(1, 6).toString(16));

输出

<Buffer 0b 0c 0d 0e 0f 10>
The buffer length is :6
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 <= 0. Received 1
   at boundsError (internal/buffer.js:58:9)
   at readUInt48BE (internal/buffer.js:177:5)
   at Buffer.readUIntBE (internal/buffer.js:157:12)
   at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:5:20)
   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
广告