Bun

指南二进制数据

使用 Bun 将缓冲区转换为字符串

Buffer 类提供了一个内置的 .toString() 方法,该方法将 Buffer 转换为字符串。

const buf = Buffer.from("hello");
const str = buf.toString();
// => "hello"

您可以选择指定编码和字节范围。

const buf = Buffer.from("hello world!");
const str = buf.toString("utf8", 0, 5);
// => "hello"

请参阅 文档 > API > 二进制数据 以获取有关使用 Bun 处理二进制数据的完整文档。