1

我是 LZO 压缩和解压缩的新手。我正在尝试使用这个 lzo-java 库

输入信息:

我有一个压缩格式的字节数组。这个字节数组我要解压,最后我要解压的字节数组。

注意:我不知道解压缩字节数组应该提供多少大小,因为我不知道解压缩字节的确切大小。

我在下面创建了代码,但它没有给出任何异常,甚至没有解压缩单个字节。

程序 :

InputStream stream = new ByteArrayInputStream(src);
int b1 = stream.read();
int b2 = stream.read();
int b3 = stream.read();
int b4 = stream.read();
int dstLength = ((b1 << 24) + (b2 << 16) + (b3 << 8) + b4);// decompressed byte array length not known
LzoAlgorithm algorithm = LzoAlgorithm.LZO1X;
LzoDecompressor decompressor =  LzoLibrary.getInstance().newDecompressor(algorithm, LzoConstraint.SAFETY);
byte dst[] = new byte[dstLength];
lzo_uintp lzo = new lzo_uintp(dstLength);
int decompress = decompressor.decompress(src, 0, src.length, dst, 0, lzo);
System.out.println("decompessed : " + decompress);//it is giving me 0

我在上面的代码中错过了什么?任何建议都会对我有所帮助!

4

0 回答 0