Node.js v16.19.1 文档


目录

string_decoder 字符串解码器#

中英对照

稳定性: 2 - 稳定

源代码: lib/string_decoder.js

node:string_decoder 模块提供了用于将 Buffer 对象解码为字符串(以保留编码的多字节 UTF-8 和 UTF-16 字符的方式)的 API。 可以使用以下方式访问它:

const { StringDecoder } = require('node:string_decoder');

下面的示例展示了 StringDecoder 类的基本用法。

const { StringDecoder } = require('node:string_decoder');
const decoder = new StringDecoder('utf8');

const cent = Buffer.from([0xC2, 0xA2]);
console.log(decoder.write(cent));

const euro = Buffer.from([0xE2, 0x82, 0xAC]);
console.log(decoder.write(euro));

Buffer 实例被写入 StringDecoder 实例时,会使用内部的缓冲区来确保解码后的字符串不包含任何不完整的多字节字符。 这些都保存在缓冲区中,直到下一次调用 stringDecoder.write() 或调用 stringDecoder.end()

在以下示例中,欧洲欧元符号 () 的三个 UTF-8 编码的字节通过三次单独的操作写入:

const { StringDecoder } = require('node:string_decoder');
const decoder = new StringDecoder('utf8');

decoder.write(Buffer.from([0xE2]));
decoder.write(Buffer.from([0x82]));
console.log(decoder.end(Buffer.from([0xAC])));

StringDecoder#

new StringDecoder([encoding])#

中英对照

  • encoding <string> StringDecoder 将使用的字符编码默认值: 'utf8'

创建新的 StringDecoder 实例。

stringDecoder.end([buffer])#

中英对照

以字符串形式返回存储在内部缓冲区中的任何剩余的输入。 表示不完整的 UTF-8 和 UTF-16 字符的字节将被替换为适合字符编码的替换字符。

如果提供了 buffer 参数,则在返回剩余的输入之前执行对 stringDecoder.write() 的最后一次调用。 调用 end() 之后,stringDecoder 对象可以重新用于新的输入。

stringDecoder.write(buffer)#

中英对照

返回已解码的字符串,确保从返回的字符串中省略 BufferTypedArrayDataView 末尾的任何不完整的多字节字符,并将其存储在内部缓冲区中,以备下次调用 stringDecoder.write()stringDecoder.end() 时使用。

返回顶部