Buffer.writeUInt16BE()方法用于将使用Big Endian格式的指定字节写入缓冲区对象。该值应为有效的无符号16位整数。
用法:
Buffer.writeUInt16BE( value, offset )
参数:该方法接受上述和以下所述的两个参数:
- value:它是一个整数值,将被写入缓冲区。
- offset:它是一个整数值,代表开始写入之前要跳过的字节数,并且offset的值在0到buffer.length-2的范围内。其默认值为0。
返回值:它返回一个整数值偏移量加上写入的字节数。
范例1:
// Node.js program to demonstrate the
// Buffer.writeUInt16BE() Method
// Allocate a buffer
const buf = Buffer.allocUnsafe(4);
// Write the buffer element in BE format
buf.writeUInt16BE(0xabcd, 0);
// Display the buffer list
console.log(buf);
// Write the buffer element in BE format
buf.writeUInt16BE(0xfede, 2)
// Display the buffer list
console.log(buf);
输出:
<Buffer ab cd f4 09> <Buffer ab cd fe de>
范例2:
// Node.js program to demonstrate the
// Buffer.writeUInt16BE() Method
// Allocate a buffer
const buf = Buffer.allocUnsafe(4);
// Write the buffer element in BE format
buf.writeUInt16BE(0xabab, 0);
// Display the buffer list
console.log(buf);
// Write the buffer element in BE format
buf.writeUInt16BE(0xefde, 2);
// Display the buffer list
console.log(buf);
输出:
<Buffer ab ab ad 09> <Buffer ab ab ef de>
注意:上面的程序将通过使用node index.js
命令。
参考: https://nodejs.org/api/buffer.html#buffer_buf_writeuint16be_value_offset
相关用法
注:本文由纯净天空筛选整理自bestharadhakrishna大神的英文原创作品 Node.js | Buffer.writeUInt16BE() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。