1. 首页
  2. 考试认证
  3. 其它
  4. node buffer utils Node.js的扩展缓冲区类

node buffer utils Node.js的扩展缓冲区类

上传者: 2024-09-01 03:30:50上传 ZIP文件 4.21KB 热度 2次
节点缓冲区实用程序Node.js的扩展缓冲区类例子var buffer_utils = require('node-buffer-utils'); var val = 256, len = 2, res = buffer-utils.createIntBE(val, len); console.log(res); // 方法读取十六进制字符串(缓冲区)从缓冲区返回十六进制字符串。 var buffer = new Buffer([0xab, 0xcd, 0xef]); buffer_utils.readHexString(buffer); // -> 'abcdef' readUIntBE(缓冲区)从缓冲区返回整数值作为大端。 var buffer = new Buffer([0x00, 0x10]); buffer_u
用户评论