Buffer.writeUInt16LE()方法用於以Little Endian格式將指定字節寫入緩衝區對象。此處,值應為有效的無符號16位整數。
用法:
Buffer.writeUInt16LE( value, offset )
參數:該方法接受上述和以下所述的兩個參數:
- value:它是一個整數值,將被寫入緩衝區。
- offset它是一個整數值,代表開始寫入之前要跳過的字節數,並且offset的值在0到buffer.length-2的範圍內,其默認值為0。
返回值:它返回一個整數值,即偏移量加上寫入的字節數。
範例1:
// Node.js program to demonstrate the
//Buffer.writeUInt16LE() Method
const buff = Buffer.allocUnsafe(4);
buff.writeUInt16LE(0xdead, 0);
console.log(buff);
buff.writeUInt16LE(0xbeef, 2)
console.log(buff);
輸出:
<Buffer ad de 00 00> <Buffer ad de ef be>
範例2:
// Node.js program to demonstrate the
//Buffer.writeUInt16LE() Method
const buff = Buffer.allocUnsafe(4);
buff.writeUInt16LE(0xfeed, 0);
console.log(buff);
buff.writeUInt16LE(0xabcd, 2);
console.log(buff);
輸出:
<Buffer ed fe 00 00> <Buffer ed fe cd ab>
注意:上麵的程序將通過使用node index.js
命令。
參考: https://nodejs.org/api/buffer.html#buffer_buf_writeuint16le_value_offset
相關用法
注:本文由純淨天空篩選整理自bestharadhakrishna大神的英文原創作品 Node.js | Buffer.writeUInt16LE() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。