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"
有关使用 Bun 操作二进制数据的完整文档,请参阅 文档 > API > 二进制数据。