Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 Flash 11 原生支持处理 LZMA 压缩 swfs,有没有办法将 LZMA 压缩与 AMF 对象一起使用?
您可以使用deflate()和inflate()来获得通用压缩和解压缩。如果你想用它来获得 LZMA 格式,你需要:
根据压缩格式的规范创建一个 ByteArray,包括适当的元数据以及使用 deflate 格式获得的压缩数据。
基本上,您必须学习结构,自己编写所有标题信息,然后使用deflate(). 要解压缩,您需要读取标题信息(readInt(), readShort等),然后使用inflate()其余部分来获取您的日期。
deflate()
readInt(), readShort
inflate()