Buffer.writeIntBE()方法用於以big endian格式將給定偏移量的值的指定字節寫入緩衝區。它支持高達48位的精度。如果該值是其他值,然後是帶符號整數,則其行為是不確定的。
用法:
buffer.writeIntBE( value, offset, byteLength )
參數:此方法接受上述和以下所述的三個參數:
- value:它指定需要寫入Buffer對象的編號。
- offset:它指定開始寫入緩衝區之前要跳過的字節數。 offset的值為0
- byteLength:它指定要寫入緩衝區的字節數。 byteLength的值為0
返回值:它返回一個整數值,該值指定偏移量加上寫入的字節數。
範例1:
// Node.js program to demonstrate the
// Buffer.writeIntBE() method
// Creating a buffer of given size
const buffer = Buffer.allocUnsafe(6);
// Write into the buffer
buffer.writeIntBE(0x10, 0, 6);
// Display the Buffer element
console.log(buffer);
// Creating a buffer of given size
const buffer2 = Buffer.allocUnsafe(6);
// Write into the buffer
buffer2.writeIntBE(0x20, 0, 4);
// Display the Buffer element
console.log(buffer2);
輸出:
<Buffer 00 00 00 00 00 10> <Buffer 00 00 00 20 69 74>
範例2:
// Node.js program to demonstrate the
// Buffer.writeIntBE() method
// Creating a buffer of given size
const buffer = Buffer.allocUnsafe(6);
// Write into the buffer
buffer.writeIntBE(023, 0, 6);
// Display the Buffer element
console.log(buffer);
// Creating a buffer of given size
const buffer2 = Buffer.allocUnsafe(6);
// Write into the buffer
buffer2.writeIntBE(1010, 0, 6);
// Display the Buffer element
console.log(buffer2);
輸出:
<Buffer 00 00 00 00 00 13> <Buffer 00 00 00 00 03 f2>
注意:上麵的程序將通過使用node index.js
命令。
參考: https://nodejs.org/api/buffer.html#buffer_buf_writeintbe_value_offset_bytelength
相關用法
注:本文由純淨天空篩選整理自bestharadhakrishna大神的英文原創作品 Node.js | Buffer.writeIntBE() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。