博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读取swf里所有类定义
阅读量:6502 次
发布时间:2019-06-24

本文共 1017 字,大约阅读时间需要 3 分钟。

public class test1 extends Sprite    {        public function test1()        {            test();        }        private function test():void {            var loader:URLLoader=new URLLoader();            loader.dataFormat=URLLoaderDataFormat.BINARY;            loader.addEventListener(Event.COMPLETE,completeHandler);            loader.load(new URLRequest("bank.swf"));        }        private function completeHandler(event:Event):void {            var bytes:ByteArray=URLLoader(event.target).data;            bytes.endian=Endian.LITTLE_ENDIAN;            bytes.writeBytes(bytes,8);            bytes.uncompress();            bytes.position=Math.ceil(((bytes[0]>>>3)*4+5)/8)+4;            while(bytes.bytesAvailable>2){                var head:int=bytes.readUnsignedShort();                var size:int=head&63;                if (size==63)size=bytes.readInt();                if (head>>6!=76)bytes.position+=size;                else {                    head=bytes.readShort();                    for(var i:int=0;i

 

转载地址:http://iomyo.baihongyu.com/

你可能感兴趣的文章
在Windows中安装Memcached
查看>>
【Android】10.4 卡片视图
查看>>
第九章 Redis过期策略
查看>>
HDU 2844 Coins (多重背包)
查看>>
浅析selenium的page object模式
查看>>
[Hapi.js] View engines
查看>>
我也想聊聊 OAuth 2.0 —— Access Token
查看>>
centos安装firefox flash插件
查看>>
centos6.5 mysql开机启动
查看>>
Ubuntu14.10 更新源,现在很多源已经停用了建议使用ubuntu15以上
查看>>
FastJSON 简介及其Map/JSON/String 互转
查看>>
手写数字样本库的下载地址
查看>>
implicit declaration of function 'copy_from_user'
查看>>
jquery,php之间的ajax关系以及json
查看>>
如何在Word中插入几何画板图形
查看>>
vim的Tab键
查看>>
[HTML]HTML5实现可编辑表格
查看>>
Android 完美退出 App (Exit)
查看>>
机器学习数学——矩阵向量求导法则
查看>>
面试时经常问到的系统应用优化问题总结
查看>>