gpt4 book ai didi

javascript - GBK 编码/解码字符集

转载 作者:行者123 更新时间:2023-11-28 01:22:07 24 4
gpt4 key购买 nike

我从服务器收到一个包含以下内容的二进制数据包:

var data = new Uint8Array([0xB2, 0xE2, 0xCA, 0xD4, 0x74, 0x65, 0x73, 0x74, 0x31, 0x32, 0x33]);

我知道它是 GBK 字符集,并且我正在使用 TextDecoder/TextEncoder API读回来:

var str = TextDecoder('gbk').decode(data);
// result: 测试test123

现在的问题是:如何做相反的事情?

我测试过:

var data = TextEncoder().encode(str);
// but it doesn't match

一些手压缩:

(str.charCodeAt(0) & 0xff) | ((str.charCodeAt(1) >>> 8) & 0xff)
// but yeah, not need to be pro to know it can't works.

有人知道逆向操作的方法吗?预先感谢您。

最佳答案

已解决。

我使用了垫片:https://github.com/inexorabletash/text-encoding并在 TextEncoder 构造函数中注释了条件部分以允许其他字符集。

这是一个例子:

if (this._encoding === null /*|| (this._encoding.name !== 'utf-8' &&
this._encoding.name !== 'utf-16le' &&
this._encoding.name !== 'utf-16be')*/)

throw new TypeError('Unknown encoding: ' + opt_encoding);

关于javascript - GBK 编码/解码字符集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23143231/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com