ActionScript2 Base64 编码/解码二进制数据
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过自定义代理运行您的请求。
您可以使用您最喜欢的语言执行您需要执行的操作,然后发送回 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