LZMA is the default and general compression method of 7z format in the 7-Zip program. LZMA provides a high compression ratio and very fast decompression, so it is very suitable for embedded applications. For example, it can be used for ROM (firmware
as3 实现的lzma解码, 从官方的java代码移植过来的。 使用例子 public static function decode(src:ByteArray) : ByteArray { if (src == null || src.length < 16) { return null; } var inStream:InputStream = new InputStream(src); var propertiesSize:int = 5; var properties:Vecto