ActionScript2 Base64 编码/解码二进制数据

发布于 2024-12-01 11:32:17 字数 232 浏览 0 评论 0原文

我有一个actionscript 2 代码,它使用base64 对传入数据进行编码/解码。问题是数据是二进制的并且包含 null(0 个字符),当将 null 传递给 charCodeAt 时,actionscript 2 失败。

我想我需要的是一个可以对数组而不是字符串进行 Base64 编码/解码的 actionscript 2 lib。

谁能给我指出一个吗?

这非常重要,

谢谢

I have an actionscript 2 code that uses base64 to encode/decode incoming data. problem is that data is binary and includes null (0 characters), actionscript 2 fails when handing null to charCodeAt.

I figured what I need is an actionscript 2 lib that can do base64 encoding/decoding on an array rather than a String.

can anyone point me to one ?

this is very important,

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早乙女 2024-12-08 11:32:17

通过自定义代理运行您的请求。

您可以使用您最喜欢的语言执行您需要执行的操作,然后发送回 AS3 应用程序。

RUBY、PHP 和 JAVA 都可以实现您所说的功能。

我使用 PHP,对数据进行卷曲、编码,然后响应请求的应用程序。

了解代理模型...它对于远程对象解析和编码来说简单且高效。

它比必须依赖旧的和未记录的 AS2 swc / lib 的客户端解析和编码要干净得多。

中查找 RDS

我建议在 AS2 http://help.adobe.com/en_US/as2/reference/addendum/WS3fd35e178bb08cb31e63e3d124b63c3af7-8000.html

Run your request through a custom proxy..

You can do what you need to do with your favorite language and then send back to the AS3 application.

RUBY, PHP, and JAVA can all do what you are saying.

I use PHP, curl in the data, encode and then respond to the requesting application.

Read about proxy models ... its simple and highly effective for remote object parsing and encoding.

Its way cleaner than having to rely on client side parsing and encoding from old and undocumented AS2 swc / libs.

I advise looking up RDS in AS2

http://help.adobe.com/en_US/as2/reference/addendum/WS3fd35e178bb08cb31e63e3d124b63c3af7-8000.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文