gpt4 book ai didi

javascript - 你如何访问 JavaScript 中的字节级信息?

转载 作者:数据小太阳 更新时间:2023-10-29 05:37:04 26 4
gpt4 key购买 nike

普遍接受的答案是不能。然而,越来越多的证据表明,基于读取非基本 HTML 类型的数据类型的项目的存在,情况并非如此。执行此操作的一些项目是 ProtoBuf 的 JavaScript 版本和 Smokescreen .

Smokescreen是用 JS 编写的 flash 解释器,所以如果不能直接获取字节,这些项目如何解决这个问题?可以找到 Smokescreen 的来源 here .我已经查看过了,但现在 JS 不是我的主要语言,我找不到解决方案。

最佳答案

它们看起来都直接使用 String(在本例中是 XMLHttpRequestresponseText)作为字节集合。

data = ... // a binary string
bytes = [];
for ( i = 0; i < data.length; i++ )
{
// This coverts the unicode character to a byte stripping
// off anything past the first 8 bits
bytes[i] = data.charCodeAt( i ) & 0xFF;
}

关于javascript - 你如何访问 JavaScript 中的字节级信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2966203/

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