Node.js Buffer.byteLength() 方法
Buffer.byteLength() 方法用于返回指定缓冲区对象的字节长度。
句法:
Buffer.byteLength( string, encoding )
参数:此方法接受上面提到的两个参数,如下所述:
- String必填参数,用于指定计算缓冲区长度的对象。支持的字符串类型有 String、Buffer、TypedArray、DataView 和 ArrayBuffer。
- 编码:它是可选参数。如果对象是字符串,则此参数指定其编码方案。编码方案的默认值为“utf8”。
返回值:返回指定对象的字节数。
示例 1:
// Node.js program to demonstrate the
// Buffer.bytelength() method
// Create a buffer
var buf = Buffer.alloc(20);
// Check the length of a buffer object:
var lenobj = Buffer.byteLength(buf);
console.log(lenobj);
输出:
20
示例 2:
// Node.js program to demonstrate the
// Buffer.bytelength() method
// Check the length of a buffer object:
var len = Buffer.byteLength('GeeksForGeeks');
console.log(len);
输出:
13
笔记:
- 在 Node.js v7.0.0 中,无效的输入参数会抛出错误。
- 在 Node.js v5.10 中,字符串参数的值可以是任何 TypedArray、DataView 或 ArrayBuffer。
- 此方法添加到 node.js v0.1.90。
参考:
https://nodejs.org/docs/latest-v11.x/api/buffer.html#buffer_class_method_buffer_bytelength_string_encoding