lzo-java
lzo-java copied to clipboard
Pure Java implementation of the liblzo2 LZO compression algorithm
Thank you very much for providing this quite useful library. I am writing an Android program in which I need to decompress random lzo files. I am reading the uncompressed...
I'm trying to decompress files that were decompressed with a native lzo library. I'm wondering if this library only supports a specific version of lzo? The version the other files...
I'm trying to decompress compressed byte array using java-lzo library. I added below **maven dependency to pom.xml** - ``` org.anarres.lzo lzo-core 1.0.5 ``` I created one method which accepts lzo...