将UTF-8 UInt8Array转换为utf-8字符串

时间:2017-05-12 09:08:28

标签: javascript string uint8array

我有问题。我需要通信javascript到C节点。

协议使用带有0xAAAA标头的String。

在JS中我有一个带有{\ xAA,\ xAA}的Uint8Array 我的问题是我需要在字符串UTF-8中转换Uint8Array。

如何从UTF-8中的Uint8Array转换为uTF-8字符串)

1 个答案:

答案 0 :(得分:0)

使用文本解码器。像这样:

const decoder = new TextDecoder("utf-8");
const str = decoder.decode(Buffer.from([0xAA, 0xAA]));