在 Node.js 中获取缓冲区的长度
Node.js 缓冲区 是存储任意二进制数据的对象。 缓冲区有一个 length
属性 包含缓冲区中字节数的
const buf = Buffer.from('Hello, World', 'utf8');
buf.length; // 12, same as 'Hello, World'.length
对于包含 UTF8 编码字符串的缓冲区,缓冲区的长度等于字符串的长度。 例如,如果您从文件系统中读取一个文本文件,使用 fs
,结果缓冲区的长度与文本文件中的字符数相同。
const fs = require('fs');
fs.writeFileSync('./test.txt', 'Hello, World');
const buf = fs.readFileSync('./test.txt');
Buffer.isBuffer(buf); // true
buf.length; // 12, same as 'Hello, World'.length
分配与实际
注意 Buffer#length
包含 分配 的大小,而不仅仅是实际使用的字节数。 这两个通常是等价的,但它们可能不同。例如如果您分配一个 100 字节的缓冲区,使用 Buffer.alloc()
,无论缓冲区的内容如何,缓冲区的长度始终为 100。
const buf = Buffer.alloc(100);
buf.length; // 100, even though the buffer contains 100 `0` bytes
// Write 'Hello, World' to the buffer starting at offset 0
buf.write('Hello, World', 0);
buf.length; // still 100, because there's 100 bytes allocated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论