Compression in J2ME

Are OSS (gzip) compression libraries available for J2ME?

+1
source share
5 answers

Take a look at the TinyLine GZip library. Download link here .

+6
source

software.informer.com/getfree-gzip-library-for-j2me/

swik.net/j2me+Library

try this link you can download for free here

0
source

Jazzlib-j2me (java.util.zip implementation in J2SE ported to J2ME) is available here: http://code.google.com/p/staff/downloads/list?q=jazzlib

Supported by gzip and gunzip.

0
source

Two compression algorithms that I used for JavaME:

i> gzip

ii> LZMA

GZip can be downloaded at the following link

Also refer to the following link

0
source

I just checked in the GZIP decompression library at http://code.google.com/p/compress-j2me/ . Uses only 7k (~ 5k after obfuscation). Compression is under construction.

0
source

Source: https://habr.com/ru/post/1411633/


All Articles