- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
Node.js - Buffer.readIntLE() 方法
NodeJS Buffer.readIntLE() 方法将在给定偏移量处从缓冲区中读取小端格式的字节数。
语法
以下是Node.JS Buffer.readIntLE()方法的语法 -
buf.readIntLE(offset, byteLength)
参数
此方法接受单个参数。下面将对此进行解释。
- offset - 指示开始读取的位置的偏移量。偏移量大于或等于 0,也小于或等于 buffer.length-bytelength。默认值为 0。
- byteLength − 您要读取的字节数。byteLength 必须介于 0 到 6 之间。
返回值
此方法以小字节序的形式返回结果,在给定的偏移值处,与缓冲区的字节长度为字节数。
例为了创建一个缓冲区,我们将使用 NodeJS Buffer.from() 方法 -
const buffer = Buffer.from([11, 12, 13, 14, 15, 16]);
console.log(buffer);
console.log(buffer.readIntLE(0, 2));
输出
我们使用此方法使用的偏移量为 0。使用的字节长度为 2。因此,从第 0 个偏移量开始,它将读取字节长度为 2 的字节,并以小端格式返回结果。
<Buffer 0b 0c 0d 0e 0f 10>
3083
3083
例
在这个例子中,让我们以十六进制形式打印我们得到的输出,如下所示 -
const buffer = Buffer.from([11, 12, 13, 14, 15, 16]);
console.log(buffer);
console.log(buffer.readIntLE(0, 2).toString(16));
输出
<Buffer 0b 0c 0d 0e 0f 10>
c0b
c0b
例
正如我们所知,我们可以使用从 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.readIntLE(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 readInt48LE (internal/buffer.js:257:5)
at Buffer.readIntLE (internal/buffer.js:237:12)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:4: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
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 readInt48LE (internal/buffer.js:257:5)
at Buffer.readIntLE (internal/buffer.js:237:12)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:4: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