Quintin Par
Quintin Par

Reputation: 16252

Compression in J2ME

Are there any OSS compression libraries (gzip) available for J2ME?

Upvotes: 1

Views: 1933

Answers (5)

Igor Gatis
Igor Gatis

Reputation: 4898

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

Upvotes: 0

chiranjib
chiranjib

Reputation: 5308

The two compression algorithms which I have used for JavaME are :

i> GZip

ii>LZMA

GZip can be downloaded from the following link

Also , refer to the following link

Upvotes: 0

loentar
loentar

Reputation: 5239

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

gzip and gunzip is supported.

Upvotes: 0

ratty
ratty

Reputation: 13434

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

swik.net/j2me+Library

try this link you can download free here

Upvotes: 0

kgiannakakis
kgiannakakis

Reputation: 104168

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

Upvotes: 6

Related Questions